pub enum Word {
Number(u32),
Phandle(&'static str),
Gpio(&'static str, &'static [u32]),
}Variants§
Number(u32)
Phandle(&'static str)
A phandle value. For now, this is just the name, since we can’t dynamically reference a module.
Gpio(&'static str, &'static [u32])
A specific GPIO value.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Word
impl RefUnwindSafe for Word
impl Send for Word
impl Sync for Word
impl Unpin for Word
impl UnwindSafe for Word
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