pub enum NodeRef<'a> {
Gerneric(NodeRefGen<'a>),
Pci(NodeRefPci<'a>),
Clock(NodeRefClock<'a>),
InterruptController(NodeRefInterruptController<'a>),
Memory(NodeRefMemory<'a>),
}Variants§
Gerneric(NodeRefGen<'a>)
Pci(NodeRefPci<'a>)
Clock(NodeRefClock<'a>)
InterruptController(NodeRefInterruptController<'a>)
Memory(NodeRefMemory<'a>)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for NodeRef<'a>
impl<'a> RefUnwindSafe for NodeRef<'a>
impl<'a> Send for NodeRef<'a>
impl<'a> Sync for NodeRef<'a>
impl<'a> Unpin for NodeRef<'a>
impl<'a> UnwindSafe for NodeRef<'a>
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