pub enum AttrType {
Show 18 variants
Invalid = 0,
Flag = 1,
U8 = 2,
U16 = 3,
U32 = 4,
U64 = 5,
S8 = 6,
S16 = 7,
S32 = 8,
S64 = 9,
Binary = 10,
String = 11,
NulString = 12,
Nested = 13,
NestedArray = 14,
Bitfield32 = 15,
Sint = 16,
Uint = 17,
}Available on crate feature
nlctrl only.Expand description
Enum - defines an integer enumeration, with values for each entry incrementing by 1, (e.g. 0, 1, 2, 3)
Variants§
Invalid = 0
Flag = 1
U8 = 2
U16 = 3
U32 = 4
U64 = 5
S8 = 6
S16 = 7
S32 = 8
S64 = 9
Binary = 10
String = 11
NulString = 12
Nested = 13
NestedArray = 14
Bitfield32 = 15
Sint = 16
Uint = 17
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AttrType
impl RefUnwindSafe for AttrType
impl Send for AttrType
impl Sync for AttrType
impl Unpin for AttrType
impl UnsafeUnpin for AttrType
impl UnwindSafe for AttrType
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