pub enum NodeTypeMut<'a> {
Clock(ClockNodeViewMut<'a>),
Memory(MemoryNodeViewMut<'a>),
InterruptController(IntcNodeViewMut<'a>),
Pci(PciNodeViewMut<'a>),
Generic(NodeGenericMut<'a>),
}Expand description
Typed mutable node view enum.
Variants§
Clock(ClockNodeViewMut<'a>)
Memory(MemoryNodeViewMut<'a>)
InterruptController(IntcNodeViewMut<'a>)
Pci(PciNodeViewMut<'a>)
Generic(NodeGenericMut<'a>)
Implementations§
Source§impl<'a> NodeTypeMut<'a>
impl<'a> NodeTypeMut<'a>
Trait Implementations§
Source§impl<'a> From<ClockNodeViewMut<'a>> for NodeTypeMut<'a>
impl<'a> From<ClockNodeViewMut<'a>> for NodeTypeMut<'a>
Source§fn from(v: ClockNodeViewMut<'a>) -> NodeTypeMut<'a>
fn from(v: ClockNodeViewMut<'a>) -> NodeTypeMut<'a>
Converts to this type from the input type.
Source§impl<'a> From<IntcNodeViewMut<'a>> for NodeTypeMut<'a>
impl<'a> From<IntcNodeViewMut<'a>> for NodeTypeMut<'a>
Source§fn from(v: IntcNodeViewMut<'a>) -> NodeTypeMut<'a>
fn from(v: IntcNodeViewMut<'a>) -> NodeTypeMut<'a>
Converts to this type from the input type.
Source§impl<'a> From<MemoryNodeViewMut<'a>> for NodeTypeMut<'a>
impl<'a> From<MemoryNodeViewMut<'a>> for NodeTypeMut<'a>
Source§fn from(v: MemoryNodeViewMut<'a>) -> NodeTypeMut<'a>
fn from(v: MemoryNodeViewMut<'a>) -> NodeTypeMut<'a>
Converts to this type from the input type.
Source§impl<'a> From<NodeGenericMut<'a>> for NodeTypeMut<'a>
impl<'a> From<NodeGenericMut<'a>> for NodeTypeMut<'a>
Source§fn from(v: NodeGenericMut<'a>) -> NodeTypeMut<'a>
fn from(v: NodeGenericMut<'a>) -> NodeTypeMut<'a>
Converts to this type from the input type.
Source§impl<'a> From<PciNodeViewMut<'a>> for NodeTypeMut<'a>
impl<'a> From<PciNodeViewMut<'a>> for NodeTypeMut<'a>
Source§fn from(v: PciNodeViewMut<'a>) -> NodeTypeMut<'a>
fn from(v: PciNodeViewMut<'a>) -> NodeTypeMut<'a>
Converts to this type from the input type.
Source§impl<'a> TryInto<ClockNodeViewMut<'a>> for NodeTypeMut<'a>
impl<'a> TryInto<ClockNodeViewMut<'a>> for NodeTypeMut<'a>
Source§impl<'a> TryInto<IntcNodeViewMut<'a>> for NodeTypeMut<'a>
impl<'a> TryInto<IntcNodeViewMut<'a>> for NodeTypeMut<'a>
Source§impl<'a> TryInto<MemoryNodeViewMut<'a>> for NodeTypeMut<'a>
impl<'a> TryInto<MemoryNodeViewMut<'a>> for NodeTypeMut<'a>
Source§impl<'a> TryInto<NodeGenericMut<'a>> for NodeTypeMut<'a>
impl<'a> TryInto<NodeGenericMut<'a>> for NodeTypeMut<'a>
Source§impl<'a> TryInto<PciNodeViewMut<'a>> for NodeTypeMut<'a>
impl<'a> TryInto<PciNodeViewMut<'a>> for NodeTypeMut<'a>
Auto Trait Implementations§
impl<'a> Freeze for NodeTypeMut<'a>
impl<'a> RefUnwindSafe for NodeTypeMut<'a>
impl<'a> Send for NodeTypeMut<'a>
impl<'a> !Sync for NodeTypeMut<'a>
impl<'a> Unpin for NodeTypeMut<'a>
impl<'a> UnsafeUnpin for NodeTypeMut<'a>
impl<'a> UnwindSafe for NodeTypeMut<'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