pub struct NriInfo {
pub info: Option<Vec<Vec<String>>>,
}Expand description
Information about the Node Resource Interface (NRI). This field is only present if NRI is enabled.
Fields§
§info: Option<Vec<Vec<String>>>Information about NRI, provided as "label" / "value" pairs.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for NriInfo
impl<'de> Deserialize<'de> for NriInfo
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<NriInfo, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<NriInfo, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for NriInfo
impl Serialize for NriInfo
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for NriInfo
Auto Trait Implementations§
impl Freeze for NriInfo
impl RefUnwindSafe for NriInfo
impl Send for NriInfo
impl Sync for NriInfo
impl Unpin for NriInfo
impl UnsafeUnpin for NriInfo
impl UnwindSafe for NriInfo
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