aboutsummaryrefslogtreecommitdiffstats
path: root/rust/fatcat-api-spec/examples/server_lib/server.rs
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2018-12-14 17:36:08 +0800
committerBryan Newbold <bnewbold@robocracy.org>2018-12-14 17:36:08 +0800
commitf6b7f0afbee988f46ee8f23c8c81224c65407679 (patch)
tree01c2c61f4464d9e905a71134d2cb65342c0bb0c5 /rust/fatcat-api-spec/examples/server_lib/server.rs
parent9ca1bdfdba5de8191ad598ef0cc288eff4d50975 (diff)
downloadfatcat-f6b7f0afbee988f46ee8f23c8c81224c65407679.tar.gz
fatcat-f6b7f0afbee988f46ee8f23c8c81224c65407679.zip
rust codegen
Diffstat (limited to 'rust/fatcat-api-spec/examples/server_lib/server.rs')
-rw-r--r--rust/fatcat-api-spec/examples/server_lib/server.rs34
1 files changed, 28 insertions, 6 deletions
diff --git a/rust/fatcat-api-spec/examples/server_lib/server.rs b/rust/fatcat-api-spec/examples/server_lib/server.rs
index 7341e528..98358657 100644
--- a/rust/fatcat-api-spec/examples/server_lib/server.rs
+++ b/rust/fatcat-api-spec/examples/server_lib/server.rs
@@ -119,12 +119,20 @@ impl Api for Server {
Box::new(futures::failed("Generic failure".into()))
}
- fn lookup_container(&self, issnl: Option<String>, wikidata_qid: Option<String>, hide: Option<String>, context: &Context) -> Box<Future<Item = LookupContainerResponse, Error = ApiError> + Send> {
+ fn lookup_container(
+ &self,
+ issnl: Option<String>,
+ wikidata_qid: Option<String>,
+ expand: Option<String>,
+ hide: Option<String>,
+ context: &Context,
+ ) -> Box<Future<Item = LookupContainerResponse, Error = ApiError> + Send> {
let context = context.clone();
println!(
- "lookup_container({:?}, {:?}, {:?}) - X-Span-ID: {:?}",
+ "lookup_container({:?}, {:?}, {:?}, {:?}) - X-Span-ID: {:?}",
issnl,
wikidata_qid,
+ expand,
hide,
context.x_span_id.unwrap_or(String::from("<none>")).clone()
);
@@ -247,12 +255,20 @@ impl Api for Server {
Box::new(futures::failed("Generic failure".into()))
}
- fn lookup_creator(&self, orcid: Option<String>, wikidata_qid: Option<String>, hide: Option<String>, context: &Context) -> Box<Future<Item = LookupCreatorResponse, Error = ApiError> + Send> {
+ fn lookup_creator(
+ &self,
+ orcid: Option<String>,
+ wikidata_qid: Option<String>,
+ expand: Option<String>,
+ hide: Option<String>,
+ context: &Context,
+ ) -> Box<Future<Item = LookupCreatorResponse, Error = ApiError> + Send> {
let context = context.clone();
println!(
- "lookup_creator({:?}, {:?}, {:?}) - X-Span-ID: {:?}",
+ "lookup_creator({:?}, {:?}, {:?}, {:?}) - X-Span-ID: {:?}",
orcid,
wikidata_qid,
+ expand,
hide,
context.x_span_id.unwrap_or(String::from("<none>")).clone()
);
@@ -417,15 +433,17 @@ impl Api for Server {
md5: Option<String>,
sha1: Option<String>,
sha256: Option<String>,
+ expand: Option<String>,
hide: Option<String>,
context: &Context,
) -> Box<Future<Item = LookupFileResponse, Error = ApiError> + Send> {
let context = context.clone();
println!(
- "lookup_file({:?}, {:?}, {:?}, {:?}) - X-Span-ID: {:?}",
+ "lookup_file({:?}, {:?}, {:?}, {:?}, {:?}) - X-Span-ID: {:?}",
md5,
sha1,
sha256,
+ expand,
hide,
context.x_span_id.unwrap_or(String::from("<none>")).clone()
);
@@ -566,17 +584,21 @@ impl Api for Server {
isbn13: Option<String>,
pmid: Option<String>,
pmcid: Option<String>,
+ core_id: Option<String>,
+ expand: Option<String>,
hide: Option<String>,
context: &Context,
) -> Box<Future<Item = LookupReleaseResponse, Error = ApiError> + Send> {
let context = context.clone();
println!(
- "lookup_release({:?}, {:?}, {:?}, {:?}, {:?}, {:?}) - X-Span-ID: {:?}",
+ "lookup_release({:?}, {:?}, {:?}, {:?}, {:?}, {:?}, {:?}, {:?}) - X-Span-ID: {:?}",
doi,
wikidata_qid,
isbn13,
pmid,
pmcid,
+ core_id,
+ expand,
hide,
context.x_span_id.unwrap_or(String::from("<none>")).clone()
);