pub enum PciConfigAccessType {
Type0,
Type1,
}Expand description
Represents the type of PCI configuration space access.
Variants§
Type0
Type 0 PCI configuration space access. Type 0 accesses have been fully routed to the target bus number.
Type1
Type 1 PCI configuration space access. Type 1 accesses have not been fully routed to the target bus number.
Trait Implementations§
Source§impl Clone for PciConfigAccessType
impl Clone for PciConfigAccessType
Source§fn clone(&self) -> PciConfigAccessType
fn clone(&self) -> PciConfigAccessType
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 PciConfigAccessType
impl Debug for PciConfigAccessType
Source§impl Inspect for PciConfigAccessType
impl Inspect for PciConfigAccessType
Source§impl PartialEq for PciConfigAccessType
impl PartialEq for PciConfigAccessType
impl Copy for PciConfigAccessType
impl Eq for PciConfigAccessType
impl StructuralPartialEq for PciConfigAccessType
Auto Trait Implementations§
impl Freeze for PciConfigAccessType
impl RefUnwindSafe for PciConfigAccessType
impl Send for PciConfigAccessType
impl Sync for PciConfigAccessType
impl Unpin for PciConfigAccessType
impl UnsafeUnpin for PciConfigAccessType
impl UnwindSafe for PciConfigAccessType
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