[][src]Struct isilon::models::NetworkDnscacheExtended

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

Fields

cache_entry_limit: Option<i32>

DNS cache entry limit

cluster_timeout: Option<i32>

Timeout value for calls made to other nodes in the cluster

dns_timeout: Option<i32>

Timeout value for calls made to the dns resolvers

eager_refresh: Option<i32>

Lead time to refresh cache entries nearing expiration

testping_delta: Option<i32>

Deltas for checking cbind cluster health

ttl_max_noerror: Option<i32>

Upper bound on ttl for cache hits

ttl_max_nxdomain: Option<i32>

Upper bound on ttl for nxdomain

ttl_max_other: Option<i32>

Upper bound on ttl for non-nxdomain failures

ttl_max_servfail: Option<i32>

Upper bound on ttl for server failures

ttl_min_noerror: Option<i32>

Lower bound on ttl for cache hits

ttl_min_nxdomain: Option<i32>

Lower bound on ttl for nxdomain

ttl_min_other: Option<i32>

Lower bound on ttl for non-nxdomain failures

ttl_min_servfail: Option<i32>

Lower bound on ttl for server failures

Trait Implementations

impl Debug for NetworkDnscacheExtended[src]

impl Serialize for NetworkDnscacheExtended[src]

impl<'de> Deserialize<'de> for NetworkDnscacheExtended[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