enum HandleKind {
Root,
Pci(String),
Driver {
driver_idx: usize,
sub_path: String,
},
}Variants§
Root
Root : listing drivers + pci.
Pci(String)
PCI sub-tree.
Driver
A specific driver, with an optional sub-path.
Auto Trait Implementations§
impl Freeze for HandleKind
impl RefUnwindSafe for HandleKind
impl Send for HandleKind
impl Sync for HandleKind
impl Unpin for HandleKind
impl UnsafeUnpin for HandleKind
impl UnwindSafe for HandleKind
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