pub enum ParameterDataType {
NotDefined,
BitField,
Ascii,
UnsignedByte,
SignedByte,
UnsignedWord,
SignedWord,
UnsignedDWord,
SignedDWord,
ManufacturerSpecific(u8),
}
Variants§
NotDefined
BitField
Ascii
UnsignedByte
SignedByte
UnsignedWord
SignedWord
UnsignedDWord
SignedDWord
ManufacturerSpecific(u8)
Trait Implementations§
Source§impl Clone for ParameterDataType
impl Clone for ParameterDataType
Source§fn clone(&self) -> ParameterDataType
fn clone(&self) -> ParameterDataType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ParameterDataType
impl Debug for ParameterDataType
Source§impl From<ParameterDataType> for u8
impl From<ParameterDataType> for u8
Source§fn from(value: ParameterDataType) -> Self
fn from(value: ParameterDataType) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ParameterDataType
impl PartialEq for ParameterDataType
Source§impl TryFrom<u8> for ParameterDataType
impl TryFrom<u8> for ParameterDataType
impl Copy for ParameterDataType
impl StructuralPartialEq for ParameterDataType
Auto Trait Implementations§
impl Freeze for ParameterDataType
impl RefUnwindSafe for ParameterDataType
impl Send for ParameterDataType
impl Sync for ParameterDataType
impl Unpin for ParameterDataType
impl UnwindSafe for ParameterDataType
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