pub enum ConvertedParameterValue {
BitField(u8),
Ascii(String),
UnsignedByte(u8),
SignedByte(i8),
UnsignedWord(u16),
SignedWord(i16),
UnsignedDWord(u32),
SignedDWord(i32),
Raw([u8; 4]),
}
Variants§
BitField(u8)
Ascii(String)
UnsignedByte(u8)
SignedByte(i8)
UnsignedWord(u16)
SignedWord(i16)
UnsignedDWord(u32)
SignedDWord(i32)
Raw([u8; 4])
Auto Trait Implementations§
impl Freeze for ConvertedParameterValue
impl RefUnwindSafe for ConvertedParameterValue
impl Send for ConvertedParameterValue
impl Sync for ConvertedParameterValue
impl Unpin for ConvertedParameterValue
impl UnwindSafe for ConvertedParameterValue
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