#[repr(C)]pub enum UserTaPropType {
USER_TA_PROP_TYPE_BOOL = 0,
USER_TA_PROP_TYPE_U32 = 1,
USER_TA_PROP_TYPE_UUID = 2,
USER_TA_PROP_TYPE_IDENTITY = 3,
USER_TA_PROP_TYPE_STRING = 4,
USER_TA_PROP_TYPE_BINARY_BLOCK = 5,
USER_TA_PROP_TYPE_U64 = 6,
USER_TA_PROP_TYPE_INVALID = 7,
}Variants§
USER_TA_PROP_TYPE_BOOL = 0
USER_TA_PROP_TYPE_U32 = 1
USER_TA_PROP_TYPE_UUID = 2
USER_TA_PROP_TYPE_IDENTITY = 3
USER_TA_PROP_TYPE_STRING = 4
USER_TA_PROP_TYPE_BINARY_BLOCK = 5
USER_TA_PROP_TYPE_U64 = 6
USER_TA_PROP_TYPE_INVALID = 7
Trait Implementations§
Source§impl Clone for UserTaPropType
impl Clone for UserTaPropType
Source§fn clone(&self) -> UserTaPropType
fn clone(&self) -> UserTaPropType
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 UserTaPropType
impl Debug for UserTaPropType
Source§impl PartialEq for UserTaPropType
impl PartialEq for UserTaPropType
Source§fn eq(&self, other: &UserTaPropType) -> bool
fn eq(&self, other: &UserTaPropType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for UserTaPropType
impl StructuralPartialEq for UserTaPropType
Auto Trait Implementations§
impl Freeze for UserTaPropType
impl RefUnwindSafe for UserTaPropType
impl Send for UserTaPropType
impl Sync for UserTaPropType
impl Unpin for UserTaPropType
impl UnsafeUnpin for UserTaPropType
impl UnwindSafe for UserTaPropType
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