[][src]Struct isilon::models::ClusterFirmwareStatusNodeDevice

pub struct ClusterFirmwareStatusNodeDevice {
    pub device: Option<String>,
    pub mismatch: Option<bool>,
    pub target_version: Option<String>,
    pub _type: Option<String>,
    pub upgrade_status: Option<String>,
    pub version: Option<String>,
}

Fields

device: Option<String>

The name of the device.

mismatch: Option<bool>

Is the firmware up-to-date for this component.

target_version: Option<String>

The target firmware version.

_type: Option<String>

The device type.

upgrade_status: Option<String>

The current state of the firmware upgrade for this component. One of the following values: 'queued', 'upgrading', 'upgraded', 'error'. or 'null'.'null' indicates that the upgrade status is unknown.

version: Option<String>

The current firmware version.

Trait Implementations

impl Debug for ClusterFirmwareStatusNodeDevice[src]

impl Serialize for ClusterFirmwareStatusNodeDevice[src]

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