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,
}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
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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 moreCreates a shared type from an unshared type.