[][src]Struct yubico::config::Config

pub struct Config {
    pub client_id: String,
    pub key: Vec<u8>,
    pub api_hosts: Vec<String>,
    pub user_agent: String,
    pub sync_level: SyncLevel,
    pub request_timeout: Duration,
    pub proxy_url: String,
    pub proxy_username: String,
    pub proxy_password: String,
}

Fields

client_id: Stringkey: Vec<u8>api_hosts: Vec<String>user_agent: Stringsync_level: SyncLevelrequest_timeout: Duration

The timeout for HTTP requests.

proxy_url: Stringproxy_username: Stringproxy_password: String

Implementations

impl Config[src]

pub fn default() -> Config[src]

pub fn set_client_id<C>(self, client_id: C) -> Self where
    C: Into<String>, 
[src]

pub fn set_key<K>(self, key: K) -> Self where
    K: Into<String>, 
[src]

pub fn set_api_hosts(self, hosts: Vec<String>) -> Self[src]

pub fn set_user_agent(self, user_agent: String) -> Self[src]

pub fn set_sync_level(self, level: SyncLevel) -> Self[src]

pub fn set_request_timeout(self, timeout: Duration) -> Self[src]

pub fn set_proxy_url<P>(self, proxy_url: P) -> Self where
    P: Into<String>, 
[src]

pub fn set_proxy_username<U>(self, proxy_username: U) -> Self where
    U: Into<String>, 
[src]

pub fn set_proxy_password<P>(self, proxy_password: P) -> Self where
    P: Into<String>, 
[src]

Trait Implementations

impl Clone for Config[src]

impl Debug for Config[src]

impl PartialEq<Config> for Config[src]

impl StructuralPartialEq for Config[src]

Auto Trait Implementations

impl RefUnwindSafe for Config

impl Send for Config

impl Sync for Config

impl Unpin for Config

impl UnwindSafe for Config

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.