#[repr(u8)]pub enum TypeCode {
Show 14 variants
Null = 255,
Boolean = 0,
Int8 = 32,
Int16 = 33,
Int32 = 34,
Int64 = 35,
UInt8 = 36,
UInt16 = 37,
UInt32 = 38,
UInt64 = 39,
Float32 = 66,
Float64 = 67,
String = 96,
Variant = 254,
}Expand description
PVD type codes from the specification
Variants§
Null = 255
Boolean = 0
Int8 = 32
Int16 = 33
Int32 = 34
Int64 = 35
UInt8 = 36
UInt16 = 37
UInt32 = 38
UInt64 = 39
Float32 = 66
Float64 = 67
String = 96
Variant = 254
Implementations§
Trait Implementations§
impl Copy for TypeCode
impl Eq for TypeCode
impl StructuralPartialEq for TypeCode
Auto Trait Implementations§
impl Freeze for TypeCode
impl RefUnwindSafe for TypeCode
impl Send for TypeCode
impl Sync for TypeCode
impl Unpin for TypeCode
impl UnsafeUnpin for TypeCode
impl UnwindSafe for TypeCode
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