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§
Source§impl Debug for ClusterNodeExtended
impl Debug for ClusterNodeExtended
Source§impl<'de> Deserialize<'de> for ClusterNodeExtended
impl<'de> Deserialize<'de> for ClusterNodeExtended
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ClusterNodeExtended
impl RefUnwindSafe for ClusterNodeExtended
impl Send for ClusterNodeExtended
impl Sync for ClusterNodeExtended
impl Unpin for ClusterNodeExtended
impl UnwindSafe for ClusterNodeExtended
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more