Struct ate::conf::Config[][src]

pub struct Config {
    pub log_path: String,
    pub log_temp: bool,
    pub ntp_pool: String,
    pub ntp_port: u32,
    pub clusters: Vec<ConfCluster>,
    pub force_client_only: bool,
    pub force_listen: Option<MeshAddress>,
    pub configured_for: ConfiguredFor,
    pub buffer_size_client: usize,
    pub buffer_size_server: usize,
    pub load_cache_size: usize,
    pub load_cache_ttl: u64,
}

Fields

log_path: Stringlog_temp: boolntp_pool: Stringntp_port: u32clusters: Vec<ConfCluster>force_client_only: boolforce_listen: Option<MeshAddress>configured_for: ConfiguredForbuffer_size_client: usizebuffer_size_server: usizeload_cache_size: usizeload_cache_ttl: u64

Trait Implementations

impl Clone for Config[src]

impl Debug for Config[src]

impl Default 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,