All Downloads are FREE. Search and download functionalities are using the official Maven repository.

rust.reqwest.configuration.mustache Maven / Gradle / Ivy

There is a newer version: 7.8.0
Show newest version
{{>partial_header}}

use reqwest;

pub struct Configuration {
    pub base_path: String,
    pub user_agent: Option,
    pub client: reqwest::Client,
    pub basic_auth: Option,
    pub oauth_access_token: Option,
    pub bearer_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() -> Configuration {
        Configuration::default()
    }
}

impl Default for Configuration {
    fn default() -> Self {
        Configuration {
            base_path: "{{{basePath}}}".to_owned(),
            user_agent: {{#httpUserAgent}}Some("{{{.}}}".to_owned()){{/httpUserAgent}}{{^httpUserAgent}}Some("OpenAPI-Generator/{{{version}}}/rust".to_owned()){{/httpUserAgent}},
            client: reqwest::Client::new(),
            basic_auth: None,
            oauth_access_token: None,
            bearer_access_token: None,
            api_key: None,
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy