pub enum ValueType {
I16,
U16,
I32,
U32,
I64,
U64,
F32,
F64,
}Expand description
Represents the numeric data type of an item in a Bmi variable’s array.
Variants§
I16
signed 16 bit int
U16
unsigned 16 bit int
I32
signed 32 bit int
U32
unsigned 32 bit int
I64
signed 64 bit int
U64
unsigned 64 bit int
F32
signed 32 bit float
F64
signed 64 bit float
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ValueType
impl RefUnwindSafe for ValueType
impl Send for ValueType
impl Sync for ValueType
impl Unpin for ValueType
impl UnwindSafe for ValueType
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