pub struct PciDevice<T0, T1, T2, T3, T4, T5, T6> {
pub base_addresses: T0,
pub capabilities: T1,
pub ext_capabilities: T2,
pub config: T3,
pub bus_id: T4,
pub device_id: T5,
pub function_id: T6,
}Expand description
The generic type corresponding to PciDevice.
Fields§
§base_addresses: T0§capabilities: T1§ext_capabilities: T2§config: T3§bus_id: T4§device_id: T5§function_id: T6Trait Implementations§
Source§impl<___E, T0, T1, T2, T3, T4, T5, T6> Encode<PciDevice<'static>, ___E> for PciDevice<T0, T1, T2, T3, T4, T5, T6>where
___E: InternalHandleEncoder + ?Sized + Encoder,
T0: Encode<Vector<'static, BaseAddress>, ___E>,
T1: Encode<Vector<'static, Capability>, ___E>,
T2: Encode<Vector<'static, ExtendedCapability>, ___E>,
T3: Encode<Vector<'static, u8>, ___E>,
T4: Encode<u8, ___E>,
T5: Encode<u8, ___E>,
T6: Encode<u8, ___E>,
impl<___E, T0, T1, T2, T3, T4, T5, T6> Encode<PciDevice<'static>, ___E> for PciDevice<T0, T1, T2, T3, T4, T5, T6>where
___E: InternalHandleEncoder + ?Sized + Encoder,
T0: Encode<Vector<'static, BaseAddress>, ___E>,
T1: Encode<Vector<'static, Capability>, ___E>,
T2: Encode<Vector<'static, ExtendedCapability>, ___E>,
T3: Encode<Vector<'static, u8>, ___E>,
T4: Encode<u8, ___E>,
T5: Encode<u8, ___E>,
T6: Encode<u8, ___E>,
Auto Trait Implementations§
impl<T0, T1, T2, T3, T4, T5, T6> Freeze for PciDevice<T0, T1, T2, T3, T4, T5, T6>
impl<T0, T1, T2, T3, T4, T5, T6> RefUnwindSafe for PciDevice<T0, T1, T2, T3, T4, T5, T6>where
T0: RefUnwindSafe,
T1: RefUnwindSafe,
T2: RefUnwindSafe,
T3: RefUnwindSafe,
T4: RefUnwindSafe,
T5: RefUnwindSafe,
T6: RefUnwindSafe,
impl<T0, T1, T2, T3, T4, T5, T6> Send for PciDevice<T0, T1, T2, T3, T4, T5, T6>
impl<T0, T1, T2, T3, T4, T5, T6> Sync for PciDevice<T0, T1, T2, T3, T4, T5, T6>
impl<T0, T1, T2, T3, T4, T5, T6> Unpin for PciDevice<T0, T1, T2, T3, T4, T5, T6>
impl<T0, T1, T2, T3, T4, T5, T6> UnsafeUnpin for PciDevice<T0, T1, T2, T3, T4, T5, T6>where
T0: UnsafeUnpin,
T1: UnsafeUnpin,
T2: UnsafeUnpin,
T3: UnsafeUnpin,
T4: UnsafeUnpin,
T5: UnsafeUnpin,
T6: UnsafeUnpin,
impl<T0, T1, T2, T3, T4, T5, T6> UnwindSafe for PciDevice<T0, T1, T2, T3, T4, T5, T6>where
T0: UnwindSafe,
T1: UnwindSafe,
T2: UnwindSafe,
T3: UnwindSafe,
T4: UnwindSafe,
T5: UnwindSafe,
T6: UnwindSafe,
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
§impl<T> InstanceFromServiceTransport<T> for T
impl<T> InstanceFromServiceTransport<T> for T
§fn from_service_transport(handle: T) -> T
fn from_service_transport(handle: T) -> T
Converts the given service transport handle of type
T to [Self]