[][src]Struct isilon::models::NodeDriveconfigNodeStall

pub struct NodeDriveconfigNodeStall {
    pub clear_time: Option<i32>,
    pub diskscrub_stripes: Option<i32>,
    pub max_error_frequency: Option<i32>,
    pub max_slow_access: Option<i32>,
    pub max_slow_frequency: Option<i32>,
    pub max_total_stall_time: Option<i32>,
    pub scan_max_ecc_delay: Option<i32>,
    pub scan_size: Option<i32>,
    pub sleep: Option<i32>,
}

Fields

clear_time: Option<i32>

The amount of time in seconds with no stalls before ignoring previous stalls.

diskscrub_stripes: Option<i32>

Number of stripes to read during a diskscrub.

max_error_frequency: Option<i32>

The number of errors during stalled drive disk exercises to cause the drive to be softfailed.

max_slow_access: Option<i32>

The number of slow accesses during stalled drive disk exercises to cause the drive to be softfailed.

max_slow_frequency: Option<i32>

The number of slow frequency triggers during stalled drive disk exercises to cause the drive to be softfailed.

max_total_stall_time: Option<i32>

The maximum amount of time, in seconds, to remain stalled before softfailing the drive.

scan_max_ecc_delay: Option<i32>

Maximum delay in seconds after an ECC correction during a scan.

scan_size: Option<i32>

Total bytes of error-free reads to complete a scan.

sleep: Option<i32>

Delay in seconds between evaluations.

Trait Implementations

impl Debug for NodeDriveconfigNodeStall[src]

impl Serialize for NodeDriveconfigNodeStall[src]

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