#[repr(u32)]pub enum GenericType {
Show 14 variants
Gap = 0,
Int8 = 1,
Bool = 2,
BoolYesNo = 3,
BoolOnOff = 4,
UInt8 = 5,
Int16 = 6,
UInt16 = 7,
Int32 = 8,
UInt32 = 9,
Float32 = 10,
Float64 = 11,
AsciiString = 12,
WideString = 13,
}Expand description
Generic data field type codes.
Variants§
Gap = 0
Int8 = 1
Bool = 2
BoolYesNo = 3
BoolOnOff = 4
UInt8 = 5
Int16 = 6
UInt16 = 7
Int32 = 8
UInt32 = 9
Float32 = 10
Float64 = 11
AsciiString = 12
WideString = 13
Implementations§
Trait Implementations§
Source§impl Clone for GenericType
impl Clone for GenericType
Source§fn clone(&self) -> GenericType
fn clone(&self) -> GenericType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GenericType
impl Debug for GenericType
Source§impl PartialEq for GenericType
impl PartialEq for GenericType
Source§fn eq(&self, other: &GenericType) -> bool
fn eq(&self, other: &GenericType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for GenericType
impl Eq for GenericType
impl StructuralPartialEq for GenericType
Auto Trait Implementations§
impl Freeze for GenericType
impl RefUnwindSafe for GenericType
impl Send for GenericType
impl Sync for GenericType
impl Unpin for GenericType
impl UnsafeUnpin for GenericType
impl UnwindSafe for GenericType
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