#[repr(i32)]pub enum DartTypedDataType {
Show 14 variants
ByteData = 0,
Int8 = 1,
Uint8 = 2,
Uint8Clamped = 3,
Int16 = 4,
Uint16 = 5,
Int32 = 6,
Uint32 = 7,
Int64 = 8,
Uint64 = 9,
Float32 = 10,
Float64 = 11,
Float32x4 = 12,
Invalid = 13,
}
Variants§
ByteData = 0
Int8 = 1
Uint8 = 2
Uint8Clamped = 3
Int16 = 4
Uint16 = 5
Int32 = 6
Uint32 = 7
Int64 = 8
Uint64 = 9
Float32 = 10
Float64 = 11
Float32x4 = 12
Invalid = 13
Trait Implementations§
Source§impl Clone for DartTypedDataType
impl Clone for DartTypedDataType
Source§fn clone(&self) -> DartTypedDataType
fn clone(&self) -> DartTypedDataType
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DartTypedDataType
impl Debug for DartTypedDataType
Source§impl PartialEq for DartTypedDataType
impl PartialEq for DartTypedDataType
impl Copy for DartTypedDataType
impl StructuralPartialEq for DartTypedDataType
Auto Trait Implementations§
impl Freeze for DartTypedDataType
impl RefUnwindSafe for DartTypedDataType
impl Send for DartTypedDataType
impl Sync for DartTypedDataType
impl Unpin for DartTypedDataType
impl UnwindSafe for DartTypedDataType
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