pub struct NodeDetails {
pub xname: String,
pub nid: String,
pub hsm: String,
pub power_status: String,
pub desired_configuration: String,
pub configuration_status: String,
pub enabled: String,
pub error_count: String,
pub boot_image_id: String,
pub boot_configuration: String,
pub kernel_params: String,
}Expand description
Per-node details returned by GET /api/v1/nodes.
Mirror of csm_rs::node::types::NodeDetails with identical fields
and identical JSON wire format. The server converts from the
upstream type via From in wire_conv.rs.
Fields§
§xname: String§nid: String§hsm: String§power_status: String§desired_configuration: String§configuration_status: String§enabled: String§error_count: String§boot_image_id: String§boot_configuration: String§kernel_params: StringTrait Implementations§
Source§impl Debug for NodeDetails
impl Debug for NodeDetails
Source§impl<'de> Deserialize<'de> for NodeDetails
impl<'de> Deserialize<'de> for NodeDetails
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 NodeDetails
impl RefUnwindSafe for NodeDetails
impl Send for NodeDetails
impl Sync for NodeDetails
impl Unpin for NodeDetails
impl UnsafeUnpin for NodeDetails
impl UnwindSafe for NodeDetails
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