pub struct DeviceDescriptor {
pub device_id: Uuid,
pub type_names: Box<[Box<str>]>,
}Expand description
A description of a device or interface block.
Fields§
§device_id: UuidThe device’s UUID.
type_names: Box<[Box<str>]>A list of strings that determine which kind of device the UUID refers to.
Trait Implementations§
Source§impl Clone for DeviceDescriptor
impl Clone for DeviceDescriptor
Source§fn clone(&self) -> DeviceDescriptor
fn clone(&self) -> DeviceDescriptor
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 DeviceDescriptor
impl Debug for DeviceDescriptor
Source§impl<'de> Deserialize<'de> for DeviceDescriptor
impl<'de> Deserialize<'de> for DeviceDescriptor
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 Hash for DeviceDescriptor
impl Hash for DeviceDescriptor
Source§impl Ord for DeviceDescriptor
impl Ord for DeviceDescriptor
Source§fn cmp(&self, other: &DeviceDescriptor) -> Ordering
fn cmp(&self, other: &DeviceDescriptor) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DeviceDescriptor
impl PartialEq for DeviceDescriptor
Source§impl PartialOrd for DeviceDescriptor
impl PartialOrd for DeviceDescriptor
Source§impl Serialize for DeviceDescriptor
impl Serialize for DeviceDescriptor
impl Eq for DeviceDescriptor
impl StructuralPartialEq for DeviceDescriptor
Auto Trait Implementations§
impl Freeze for DeviceDescriptor
impl RefUnwindSafe for DeviceDescriptor
impl Send for DeviceDescriptor
impl Sync for DeviceDescriptor
impl Unpin for DeviceDescriptor
impl UnwindSafe for DeviceDescriptor
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