Struct zircon_object::dev::PcieDeviceInfo[][src]

#[repr(C)]pub struct PcieDeviceInfo {
    pub vendor_id: u16,
    pub device_id: u16,
    pub base_class: u8,
    pub sub_class: u8,
    pub program_interface: u8,
    pub revision_id: u8,
    pub bus_id: u8,
    pub dev_id: u8,
    pub func_id: u8,
    // some fields omitted
}

Info returned to dev manager for PCIe devices when probing.

Fields

vendor_id: u16device_id: u16base_class: u8sub_class: u8program_interface: u8revision_id: u8bus_id: u8dev_id: u8func_id: u8

Trait Implementations

impl Clone for PcieDeviceInfo[src]

impl Debug for PcieDeviceInfo[src]

Auto Trait Implementations

impl RefUnwindSafe for PcieDeviceInfo

impl Send for PcieDeviceInfo

impl Sync for PcieDeviceInfo

impl Unpin for PcieDeviceInfo

impl UnwindSafe for PcieDeviceInfo

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Downcast for T where
    T: Any
[src]

impl<T> DowncastSync for T where
    T: Send + Sync + Any
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.