#[repr(u16)]pub enum CoreObjectType {
Show 30 variants
Zone = 32,
Admin = 33,
Storage = 40,
Text = 41,
FriendOption = 131,
FriendProperty = 132,
BlockV1 = 300,
MetaProto = 301,
MetaMinerGroup = 302,
BlockV2 = 303,
TransContext = 350,
DecApp = 400,
AppStatus = 401,
AppList = 402,
AppStoreList = 405,
AppExtInfo = 406,
DefaultAppList = 407,
SetDefaultApp = 408,
AppCmd = 410,
AppLocalStatus = 411,
AppCmdList = 413,
AppSetting = 414,
AppManagerAction = 415,
AppLocalList = 416,
NFTList = 500,
PerfOperation = 600,
AddFriend = 1_001,
Msg = 1_003,
RemoveFriend = 1_004,
ErrObjType = 32_767,
}Variants§
Zone = 32
Admin = 33
Storage = 40
Text = 41
FriendOption = 131
FriendProperty = 132
BlockV1 = 300
MetaProto = 301
MetaMinerGroup = 302
BlockV2 = 303
TransContext = 350
DecApp = 400
AppStatus = 401
AppList = 402
AppStoreList = 405
AppExtInfo = 406
DefaultAppList = 407
SetDefaultApp = 408
AppCmd = 410
AppLocalStatus = 411
AppCmdList = 413
AppSetting = 414
AppManagerAction = 415
AppLocalList = 416
NFTList = 500
PerfOperation = 600
AddFriend = 1_001
Msg = 1_003
RemoveFriend = 1_004
ErrObjType = 32_767
Implementations§
Trait Implementations§
Source§impl Clone for CoreObjectType
impl Clone for CoreObjectType
Source§fn clone(&self) -> CoreObjectType
fn clone(&self) -> CoreObjectType
Returns a duplicate of the value. Read more
1.0.0 · 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 CoreObjectType
impl Debug for CoreObjectType
Source§impl From<u16> for CoreObjectType
impl From<u16> for CoreObjectType
Source§impl IntEnum for CoreObjectType
impl IntEnum for CoreObjectType
Source§impl Into<u16> for CoreObjectType
impl Into<u16> for CoreObjectType
Source§impl PartialEq for CoreObjectType
impl PartialEq for CoreObjectType
impl Copy for CoreObjectType
impl Eq for CoreObjectType
impl StructuralPartialEq for CoreObjectType
Auto Trait Implementations§
impl Freeze for CoreObjectType
impl RefUnwindSafe for CoreObjectType
impl Send for CoreObjectType
impl Sync for CoreObjectType
impl Unpin for CoreObjectType
impl UnwindSafe for CoreObjectType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more