pub struct InventoryGroup {
pub type_: DeviceType,
pub devices: Vec<Device>,
}Expand description
A group of devices of a particular type in the inventory.
Fields§
§type_: DeviceType§devices: Vec<Device>Trait Implementations§
Source§impl Clone for InventoryGroup
impl Clone for InventoryGroup
Source§fn clone(&self) -> InventoryGroup
fn clone(&self) -> InventoryGroup
Returns a duplicate 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 InventoryGroup
impl Debug for InventoryGroup
Source§impl<'de> Deserialize<'de> for InventoryGroup
impl<'de> Deserialize<'de> for InventoryGroup
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
Source§impl PartialEq for InventoryGroup
impl PartialEq for InventoryGroup
Source§impl Serialize for InventoryGroup
impl Serialize for InventoryGroup
impl Eq for InventoryGroup
impl StructuralPartialEq for InventoryGroup
Auto Trait Implementations§
impl Freeze for InventoryGroup
impl RefUnwindSafe for InventoryGroup
impl Send for InventoryGroup
impl Sync for InventoryGroup
impl Unpin for InventoryGroup
impl UnwindSafe for InventoryGroup
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