pub enum PciDeviceEnumerationErrorLocation {
None,
Bus(PciBusNumber),
Device(PciLocation),
}
Expand description
The location at which an enumeration error occurred
Variants§
None
The PCI location where the error occurred is unknown
Bus(PciBusNumber)
The error occurred at the specified bus
Device(PciLocation)
The error occurred at the specified PCI location
Trait Implementations§
Source§impl Clone for PciDeviceEnumerationErrorLocation
impl Clone for PciDeviceEnumerationErrorLocation
Source§fn clone(&self) -> PciDeviceEnumerationErrorLocation
fn clone(&self) -> PciDeviceEnumerationErrorLocation
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 moreimpl Copy for PciDeviceEnumerationErrorLocation
Auto Trait Implementations§
impl Freeze for PciDeviceEnumerationErrorLocation
impl RefUnwindSafe for PciDeviceEnumerationErrorLocation
impl Send for PciDeviceEnumerationErrorLocation
impl Sync for PciDeviceEnumerationErrorLocation
impl Unpin for PciDeviceEnumerationErrorLocation
impl UnwindSafe for PciDeviceEnumerationErrorLocation
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