[][src]Struct isilon::models::NodeStatusNodeNvram

pub struct NodeStatusNodeNvram {
    pub batteries: Option<Vec<NodeStatusNodeNvramBattery>>,
    pub battery_count: Option<i32>,
    pub charge_status: Option<String>,
    pub charge_status_number: Option<i32>,
    pub device: Option<String>,
    pub present: Option<bool>,
    pub present_flash: Option<bool>,
    pub present_size: Option<u64>,
    pub present_type: Option<String>,
    pub ship_mode: Option<i32>,
    pub supported: Option<bool>,
    pub supported_flash: Option<bool>,
    pub supported_size: Option<u64>,
    pub supported_type: Option<String>,
}

Fields

batteries: Option<Vec<NodeStatusNodeNvramBattery>>

This node's NVRAM battery status information.

battery_count: Option<i32>

This node's NVRAM battery count.

charge_status: Option<String>

This node's NVRAM battery charge status, as a color.

charge_status_number: Option<i32>

This node's NVRAM battery charge status, as a number.

device: Option<String>

This node's NVRAM device name with path.

present: Option<bool>

This node has NVRAM.

present_flash: Option<bool>

This node has NVRAM with flash storage.

present_size: Option<u64>

The size of the NVRAM, in bytes.

present_type: Option<String>

This node's NVRAM type.

ship_mode: Option<i32>

This node's current ship mode state for NVRAM batteries.

supported: Option<bool>

This node supports NVRAM.

supported_flash: Option<bool>

This node supports NVRAM with flash storage.

supported_size: Option<u64>

The maximum size of the NVRAM, in bytes.

supported_type: Option<String>

This node's supported NVRAM type.

Trait Implementations

impl Debug for NodeStatusNodeNvram[src]

impl Serialize for NodeStatusNodeNvram[src]

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