pub struct Phandle(/* private fields */);Expand description
A phandle (pointer handle) for referencing device tree nodes.
Phandles provide a way for nodes to reference other nodes in the device tree.
A node that may be referenced defines a phandle property with a unique value,
and other nodes reference it using that value in properties like interrupt-parent.
Implementations§
Trait Implementations§
Source§impl Ord for Phandle
impl Ord for Phandle
Source§impl PartialOrd for Phandle
impl PartialOrd for Phandle
impl Copy for Phandle
impl Eq for Phandle
impl StructuralPartialEq for Phandle
Auto Trait Implementations§
impl Freeze for Phandle
impl RefUnwindSafe for Phandle
impl Send for Phandle
impl Sync for Phandle
impl Unpin for Phandle
impl UnwindSafe for Phandle
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