[][src]Struct isilon::models::NodeStateReadonlyNode

pub struct NodeStateReadonlyNode {
    pub allowed: Option<bool>,
    pub enabled: Option<bool>,
    pub error: Option<String>,
    pub id: Option<i32>,
    pub lnn: Option<i32>,
    pub mode: Option<bool>,
    pub status: Option<String>,
    pub valid: Option<bool>,
    pub value: Option<i32>,
}

Fields

allowed: Option<bool>

The current read-only mode allowed status for the node.

enabled: Option<bool>

The current read-only user mode status for the node. NOTE: If read-only mode is currently disallowed for this node, it will remain read/write until read-only mode is allowed again. This value only sets or clears any user-specified requests for read-only mode. If the node has been placed into read-only mode by the system, it will remain in read-only mode until the system conditions which triggered read-only mode have cleared.

error: Option<String>

Error message, if the HTTP status returned from this node was not 200.

id: Option<i32>

Node ID of the node reporting this information.

lnn: Option<i32>

Logical node number of the node reporting this information.

mode: Option<bool>

The current read-only mode status for the node.

status: Option<String>

The current read-only mode status description for the node.

valid: Option<bool>

The read-only state values are valid (False = Error).

value: Option<i32>

The current read-only value (enumerated bitfield) for the node.

Trait Implementations

impl Debug for NodeStateReadonlyNode[src]

impl Serialize for NodeStateReadonlyNode[src]

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