#[repr(u8)]pub enum LazyType {
Show 19 variants
Void = 0,
String = 1,
Binary = 2,
I8 = 3,
I16 = 4,
I32 = 5,
I64 = 6,
I128 = 7,
U8 = 8,
U16 = 9,
U32 = 10,
U64 = 11,
U128 = 12,
F32 = 13,
F64 = 14,
True = 15,
False = 16,
Link = 17,
Array = 18,
}
Variants§
Void = 0
String = 1
Binary = 2
I8 = 3
I16 = 4
I32 = 5
I64 = 6
I128 = 7
U8 = 8
U16 = 9
U32 = 10
U64 = 11
U128 = 12
F32 = 13
F64 = 14
True = 15
False = 16
Link = 17
Array = 18
Trait Implementations§
impl Copy for LazyType
impl Eq for LazyType
impl StructuralPartialEq for LazyType
Auto Trait Implementations§
impl Freeze for LazyType
impl RefUnwindSafe for LazyType
impl Send for LazyType
impl Sync for LazyType
impl Unpin for LazyType
impl UnwindSafe for LazyType
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