[][src]Struct isilon::models::ClusterNodes

pub struct ClusterNodes {
    pub error: Option<ClusterNodesError>,
    pub last_action: Option<String>,
    pub last_action_result: Option<String>,
    pub lnn: Option<i32>,
    pub node_state: Option<String>,
    pub onefs_version: Option<ClusterNodesOnefsVersion>,
    pub progress: Option<i32>,
}

Fields

error: Option<ClusterNodesError>

The current OneFS version before upgrade.

last_action: Option<String>

The last action performed to completion/failure on this node. Null if the node_state is 'committed' or 'assessing.' One of the following values: 'upgrade', 'rollback'.

last_action_result: Option<String>

Did the node pass upgrade or rollback without failing? Null if the node_state is 'committed.' One of the following values: 'pass', 'fail', null

lnn: Option<i32>

The lnn of the node.

node_state: Option<String>

\e The state of the node during the upgrade, rollback, or assessment. One of the following values: 'committed', 'upgraded', 'upgrading', 'rolling back', 'assessing', 'error'

onefs_version: Option<ClusterNodesOnefsVersion>

The current OneFS version before upgrade.

progress: Option<i32>

What step is the upgrade, assessment, or rollback in? To show via progress indicator. NOTE: the value is an integer between 0 and 100 (percent)

Trait Implementations

impl Debug for ClusterNodes[src]

impl Serialize for ClusterNodes[src]

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