pub struct PciIdentifiers {
pub device_id: u32,
pub subsystem_id: u32,
pub revision_id: u32,
pub ext_device_id: u32,
}Fields§
§device_id: u32§subsystem_id: u32§revision_id: u32§ext_device_id: u32Implementations§
Trait Implementations§
Source§impl Clone for PciIdentifiers
impl Clone for PciIdentifiers
Source§fn clone(&self) -> PciIdentifiers
fn clone(&self) -> PciIdentifiers
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PciIdentifiers
Source§impl Debug for PciIdentifiers
impl Debug for PciIdentifiers
Source§impl Default for PciIdentifiers
impl Default for PciIdentifiers
Source§fn default() -> PciIdentifiers
fn default() -> PciIdentifiers
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PciIdentifiers
impl<'de> Deserialize<'de> for PciIdentifiers
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<PciIdentifiers, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<PciIdentifiers, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for PciIdentifiers
impl Display for PciIdentifiers
impl Eq for PciIdentifiers
Source§impl Hash for PciIdentifiers
impl Hash for PciIdentifiers
Source§impl Ord for PciIdentifiers
impl Ord for PciIdentifiers
Source§fn cmp(&self, other: &PciIdentifiers) -> Ordering
fn cmp(&self, other: &PciIdentifiers) -> Ordering
1.21.0 (const: unstable) · 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 PciIdentifiers
impl PartialEq for PciIdentifiers
Source§fn eq(&self, other: &PciIdentifiers) -> bool
fn eq(&self, other: &PciIdentifiers) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for PciIdentifiers
impl PartialOrd for PciIdentifiers
Source§impl Serialize for PciIdentifiers
impl Serialize for PciIdentifiers
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 PciIdentifiers
Auto Trait Implementations§
impl Freeze for PciIdentifiers
impl RefUnwindSafe for PciIdentifiers
impl Send for PciIdentifiers
impl Sync for PciIdentifiers
impl Unpin for PciIdentifiers
impl UnsafeUnpin for PciIdentifiers
impl UnwindSafe for PciIdentifiers
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