pub enum FdtNodeRef {
Path(String),
Symbol(String),
}
Expand description
A node reference in an Fdt
.
There are two possible references:
- FdtNodeRef::Path
: a full path to a node.
- FdtNodeRef::Symbol
: a symbol pointing to a node.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FdtNodeRef
impl RefUnwindSafe for FdtNodeRef
impl Send for FdtNodeRef
impl Sync for FdtNodeRef
impl Unpin for FdtNodeRef
impl UnwindSafe for FdtNodeRef
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