rust.configuration.mustache Maven / Gradle / Ivy
{{>partial_header}}
use hyper;
use std::collections::HashMap;
pub struct Configuration {
pub base_path: String,
pub user_agent: Option,
pub client: hyper::client::Client,
pub basic_auth: Option,
pub oauth_access_token: Option,
pub api_key: Option,
// TODO: take an oauth2 token source, similar to the go one
}
pub type BasicAuth = (String, Option);
pub struct ApiKey {
pub prefix: Option,
pub key: String,
}
impl Configuration {
pub fn new(client: hyper::client::Client) -> Configuration {
Configuration {
base_path: "{{{basePath}}}".to_owned(),
user_agent: {{#httpUserAgent}}Some("{{{.}}}".to_owned()){{/httpUserAgent}}{{^httpUserAgent}}Some("Swagger-Codegen/{{version}}/rust".to_owned()){{/httpUserAgent}},
client: client,
basic_auth: None,
oauth_access_token: None,
api_key: None,
}
}
}