pub enum Value {
None,
Integer(i64),
Boolean(bool),
String(String),
CompoundU8(Vec<u8>),
CompoundU16(Vec<u16>),
CompoundU32(Vec<u32>),
CompoundPtr(Vec<u8>),
}
Expand description
Device control value
Variants§
None
Integer(i64)
Boolean(bool)
String(String)
CompoundU8(Vec<u8>)
CompoundU16(Vec<u16>)
CompoundU32(Vec<u32>)
CompoundPtr(Vec<u8>)
Trait Implementations§
impl Eq for Value
impl StructuralPartialEq for Value
Auto Trait Implementations§
impl Freeze for Value
impl RefUnwindSafe for Value
impl Send for Value
impl Sync for Value
impl Unpin for Value
impl UnwindSafe for Value
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