Struct PCIBUSDATA
#[repr(C)]pub struct PCIBUSDATA {
pub Tag: u32,
pub Version: u32,
pub ReadConfig: PciReadWriteConfig,
pub WriteConfig: PciReadWriteConfig,
pub Pin2Line: PciPin2Line,
pub Line2Pin: PciLine2Pin,
pub ParentSlot: PCI_SLOT_NUMBER,
pub Reserved: [*mut c_void; 4],
}
Fields§
§Tag: u32
§Version: u32
§ReadConfig: PciReadWriteConfig
§WriteConfig: PciReadWriteConfig
§Pin2Line: PciPin2Line
§Line2Pin: PciLine2Pin
§ParentSlot: PCI_SLOT_NUMBER
§Reserved: [*mut c_void; 4]
Trait Implementations§
§impl Clone for PCIBUSDATA
impl Clone for PCIBUSDATA
§fn clone(&self) -> PCIBUSDATA
fn clone(&self) -> PCIBUSDATA
Returns a copy 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 moreimpl Copy for PCIBUSDATA
Auto Trait Implementations§
impl Freeze for PCIBUSDATA
impl RefUnwindSafe for PCIBUSDATA
impl !Send for PCIBUSDATA
impl !Sync for PCIBUSDATA
impl Unpin for PCIBUSDATA
impl UnwindSafe for PCIBUSDATA
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