pub enum VarType {
Char = 0,
Bool = 1,
Int = 2,
Bitfield = 3,
Float = 4,
Double = 5,
Etcount = 6,
}Expand description
The different types of variables or datapoints available.
Variants§
Trait Implementations§
impl Copy for VarType
impl StructuralPartialEq for VarType
Auto Trait Implementations§
impl Freeze for VarType
impl RefUnwindSafe for VarType
impl Send for VarType
impl Sync for VarType
impl Unpin for VarType
impl UnwindSafe for VarType
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