pub enum Node {
Integer(IntegerNode),
Float(FloatNode),
Enum(EnumNode),
Boolean(BooleanNode),
Command(CommandNode),
Category(CategoryNode),
SwissKnife(SkNode),
}Expand description
Node kinds supported by the Tier-1 subset.
Variants§
Integer(IntegerNode)
Signed integer feature stored in a fixed-width register block.
Float(FloatNode)
Floating point feature with optional scale/offset conversion.
Enum(EnumNode)
Enumeration feature mapping integers to symbolic names.
Boolean(BooleanNode)
Boolean feature represented as an integer register.
Command(CommandNode)
Command feature triggering a device-side action when written.
Category(CategoryNode)
Category organising related features.
SwissKnife(SkNode)
SwissKnife expression producing a computed value.
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for Node
impl !RefUnwindSafe for Node
impl Send for Node
impl !Sync for Node
impl Unpin for Node
impl UnwindSafe for Node
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