pub struct HWInventory {Show 24 fields
    pub xname: Option<String>,
    pub format: Option<String>,
    pub cabinets: Option<Vec<HWInvByLocCabinet>>,
    pub chassis: Option<Vec<HWInvByLocChassis>>,
    pub compute_modules: Option<Vec<HWInvByLocComputeModule>>,
    pub router_modules: Option<Vec<HWInvByLocRouterModule>>,
    pub node_enclosures: Option<Vec<HWInvByLocNodeEnclosure>>,
    pub hsn_boards: Option<Vec<HWInvByLocHSNBoard>>,
    pub mgmt_switches: Option<Vec<HWInvByLocMgmtSwitch>>,
    pub mgmt_hl_switches: Option<Vec<HWInvByLocMgmtHLSwitch>>,
    pub cdu_mgmt_switches: Option<Vec<HWInvByLocCDUMgmtSwitch>>,
    pub nodes: Option<Vec<HWInvByLocNode>>,
    pub processors: Option<Vec<HWInvByLocProcessor>>,
    pub node_accels: Option<Vec<HWInvByLocNodeAccel>>,
    pub drives: Option<Vec<HWInvByLocDrive>>,
    pub memory: Option<Vec<HWInvByLocMemory>>,
    pub cabinet_pdus: Option<Vec<HWInvByLocPDU>>,
    pub cabinet_pdu_power_connectors: Option<Vec<HWInvByLocOutlet>>,
    pub cmm_rectifiers: Option<Vec<HWInvByLocCMMRectifier>>,
    pub node_accel_risers: Option<Vec<HWInvByLocNodeAccelRiser>>,
    pub node_hsn_nics: Option<Vec<HWInvByLocHSNNIC>>,
    pub node_enclosure_power_supplies: Option<Vec<HWInvByLocNodePowerSupply>>,
    pub node_bmc: Option<Vec<HWInvByLocNodeBMC>>,
    pub router_bmc: Option<Vec<HWInvByLocRouterBMC>>,
}Fields§
§xname: Option<String>§format: Option<String>§cabinets: Option<Vec<HWInvByLocCabinet>>§chassis: Option<Vec<HWInvByLocChassis>>§compute_modules: Option<Vec<HWInvByLocComputeModule>>§router_modules: Option<Vec<HWInvByLocRouterModule>>§node_enclosures: Option<Vec<HWInvByLocNodeEnclosure>>§hsn_boards: Option<Vec<HWInvByLocHSNBoard>>§mgmt_switches: Option<Vec<HWInvByLocMgmtSwitch>>§mgmt_hl_switches: Option<Vec<HWInvByLocMgmtHLSwitch>>§cdu_mgmt_switches: Option<Vec<HWInvByLocCDUMgmtSwitch>>§nodes: Option<Vec<HWInvByLocNode>>§processors: Option<Vec<HWInvByLocProcessor>>§node_accels: Option<Vec<HWInvByLocNodeAccel>>§drives: Option<Vec<HWInvByLocDrive>>§memory: Option<Vec<HWInvByLocMemory>>§cabinet_pdus: Option<Vec<HWInvByLocPDU>>§cabinet_pdu_power_connectors: Option<Vec<HWInvByLocOutlet>>§cmm_rectifiers: Option<Vec<HWInvByLocCMMRectifier>>§node_accel_risers: Option<Vec<HWInvByLocNodeAccelRiser>>§node_hsn_nics: Option<Vec<HWInvByLocHSNNIC>>§node_enclosure_power_supplies: Option<Vec<HWInvByLocNodePowerSupply>>§node_bmc: Option<Vec<HWInvByLocNodeBMC>>§router_bmc: Option<Vec<HWInvByLocRouterBMC>>Trait Implementations§
Source§impl Clone for HWInventory
 
impl Clone for HWInventory
Source§fn clone(&self) -> HWInventory
 
fn clone(&self) -> HWInventory
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreSource§impl Debug for HWInventory
 
impl Debug for HWInventory
Source§impl<'de> Deserialize<'de> for HWInventory
 
impl<'de> Deserialize<'de> for HWInventory
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 HWInventory
impl RefUnwindSafe for HWInventory
impl Send for HWInventory
impl Sync for HWInventory
impl Unpin for HWInventory
impl UnwindSafe for HWInventory
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> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
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 more