pub enum DataType {
DATA8,
DATA16,
DATA32,
DATAF,
DATAN(usize),
DATAS(usize),
}Expand description
EV3 DataType.
DATAN is for custom array
Variants§
DATA8
8-bits value
DATA16
16-bits value
DATA32
32-bits value
DATAF
IEEE-754 single precision float i.e. f32
DATAN(usize)
Array
DATAS(usize)
Zero-terminated string
Auto Trait Implementations§
impl Freeze for DataType
impl RefUnwindSafe for DataType
impl Send for DataType
impl Sync for DataType
impl Unpin for DataType
impl UnwindSafe for DataType
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