[][src]Struct isilon::models::ClusterNodeExtended

pub struct ClusterNodeExtended {
    pub drive_d_config: Option<ClusterNodeDriveDConfig>,
    pub drives: Option<Vec<NodeDrivesNodeDrive>>,
    pub hardware: Option<ClusterNodeHardware>,
    pub id: Option<i32>,
    pub lnn: Option<i32>,
    pub partitions: Option<ClusterNodePartitions>,
    pub sensors: Option<ClusterNodeSensors>,
    pub sleds: Option<Vec<NodeSledsNodeSled>>,
    pub state: Option<ClusterNodeStateExtended>,
    pub status: Option<ClusterNodeStatus>,
}

Fields

drive_d_config: Option<ClusterNodeDriveDConfig>

An object containing a node's drive subsystem XML configuration file.

drives: Option<Vec<NodeDrivesNodeDrive>>

List of the drives in this node.

hardware: Option<ClusterNodeHardware>

Node hardware identifying information (static).

id: Option<i32>

Node ID (Device Number) of this node.

lnn: Option<i32>

Logical Node Number (LNN) of this node.

partitions: Option<ClusterNodePartitions>

Node partition information.

sensors: Option<ClusterNodeSensors>

Node sensor information (hardware reported).

sleds: Option<Vec<NodeSledsNodeSled>>

List of the sleds in this node.

state: Option<ClusterNodeStateExtended>

Node state information (reported and modifiable).

status: Option<ClusterNodeStatus>

Node status information (hardware reported).

Trait Implementations

impl Debug for ClusterNodeExtended[src]

impl Serialize for ClusterNodeExtended[src]

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