[][src]Struct isilon::models::NetworkDnscacheSettings

pub struct NetworkDnscacheSettings {
    pub cache_entry_limit: i32,
    pub cluster_timeout: i32,
    pub dns_timeout: i32,
    pub eager_refresh: i32,
    pub testping_delta: i32,
    pub ttl_max_noerror: i32,
    pub ttl_max_nxdomain: i32,
    pub ttl_max_other: i32,
    pub ttl_max_servfail: i32,
    pub ttl_min_noerror: i32,
    pub ttl_min_nxdomain: i32,
    pub ttl_min_other: i32,
    pub ttl_min_servfail: i32,
}

Fields

cache_entry_limit: i32

DNS cache entry limit

cluster_timeout: i32

Timeout value for calls made to other nodes in the cluster

dns_timeout: i32

Timeout value for calls made to the dns resolvers

eager_refresh: i32

Lead time to refresh cache entries nearing expiration

testping_delta: i32

Deltas for checking cbind cluster health

ttl_max_noerror: i32

Upper bound on ttl for cache hits

ttl_max_nxdomain: i32

Upper bound on ttl for nxdomain

ttl_max_other: i32

Upper bound on ttl for non-nxdomain failures

ttl_max_servfail: i32

Upper bound on ttl for server failures

ttl_min_noerror: i32

Lower bound on ttl for cache hits

ttl_min_nxdomain: i32

Lower bound on ttl for nxdomain

ttl_min_other: i32

Lower bound on ttl for non-nxdomain failures

ttl_min_servfail: i32

Lower bound on ttl for server failures

Trait Implementations

impl Debug for NetworkDnscacheSettings[src]

impl Serialize for NetworkDnscacheSettings[src]

impl<'de> Deserialize<'de> for NetworkDnscacheSettings[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T