Trait transip::Configuration

source ·
pub trait Configuration {
    // Required methods
    fn user_name(&self) -> &str;
    fn private_key_pem_file(&self) -> &str;
    fn token_path(&self) -> &str;
    fn whitelisted_only(&self) -> bool;
    fn read_only(&self) -> bool;
    fn token_expiration(&self) -> TokenExpiration;
}

Required Methods§

source

fn user_name(&self) -> &str

source

fn private_key_pem_file(&self) -> &str

source

fn token_path(&self) -> &str

source

fn whitelisted_only(&self) -> bool

source

fn read_only(&self) -> bool

source

fn token_expiration(&self) -> TokenExpiration

Implementors§