From 0ed087be71b02d9279bd3b131131eae672580d71 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Tue, 15 May 2018 21:17:09 -0700 Subject: tweak openapi schema --- rust/fatcat-api/examples/server_lib/server.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'rust/fatcat-api/examples/server_lib/server.rs') diff --git a/rust/fatcat-api/examples/server_lib/server.rs b/rust/fatcat-api/examples/server_lib/server.rs index fc0e5174..42b6384f 100644 --- a/rust/fatcat-api/examples/server_lib/server.rs +++ b/rust/fatcat-api/examples/server_lib/server.rs @@ -30,7 +30,7 @@ impl Api for Server { Box::new(futures::failed("Generic failure".into())) } - fn container_post(&self, body: Option, context: &Context) -> Box + Send> { + fn container_post(&self, body: models::ContainerEntity, context: &Context) -> Box + Send> { let context = context.clone(); println!("container_post({:?}) - X-Span-ID: {:?}", body, context.x_span_id.unwrap_or(String::from("")).clone()); Box::new(futures::failed("Generic failure".into())) @@ -48,7 +48,7 @@ impl Api for Server { Box::new(futures::failed("Generic failure".into())) } - fn creator_post(&self, body: Option, context: &Context) -> Box + Send> { + fn creator_post(&self, body: models::CreatorEntity, context: &Context) -> Box + Send> { let context = context.clone(); println!("creator_post({:?}) - X-Span-ID: {:?}", body, context.x_span_id.unwrap_or(String::from("")).clone()); Box::new(futures::failed("Generic failure".into())) @@ -100,7 +100,7 @@ impl Api for Server { Box::new(futures::failed("Generic failure".into())) } - fn file_post(&self, body: Option, context: &Context) -> Box + Send> { + fn file_post(&self, body: models::FileEntity, context: &Context) -> Box + Send> { let context = context.clone(); println!("file_post({:?}) - X-Span-ID: {:?}", body, context.x_span_id.unwrap_or(String::from("")).clone()); Box::new(futures::failed("Generic failure".into())) @@ -118,7 +118,7 @@ impl Api for Server { Box::new(futures::failed("Generic failure".into())) } - fn release_post(&self, body: Option, context: &Context) -> Box + Send> { + fn release_post(&self, body: models::ReleaseEntity, context: &Context) -> Box + Send> { let context = context.clone(); println!("release_post({:?}) - X-Span-ID: {:?}", body, context.x_span_id.unwrap_or(String::from("")).clone()); Box::new(futures::failed("Generic failure".into())) @@ -130,7 +130,7 @@ impl Api for Server { Box::new(futures::failed("Generic failure".into())) } - fn work_post(&self, body: Option, context: &Context) -> Box + Send> { + fn work_post(&self, body: models::WorkEntity, context: &Context) -> Box + Send> { let context = context.clone(); println!("work_post({:?}) - X-Span-ID: {:?}", body, context.x_span_id.unwrap_or(String::from("")).clone()); Box::new(futures::failed("Generic failure".into())) -- cgit v1.2.3