#[repr(u8)]pub enum EntityKind {
Unknown = 0,
UserWriterNoKey = 3,
UserWriterWithKey = 2,
UserReaderNoKey = 4,
UserReaderWithKey = 7,
BuiltinWriterNoKey = 195,
BuiltinWriterWithKey = 194,
BuiltinReaderNoKey = 196,
BuiltinReaderWithKey = 199,
Participant = 193,
}Expand description
EntityKind: Klassifikation eines Endpunkts. Spec-Tabelle 9.1.
Variants§
Unknown = 0
UserWriterNoKey = 3
UserWriterWithKey = 2
UserReaderNoKey = 4
UserReaderWithKey = 7
BuiltinWriterNoKey = 195
BuiltinWriterWithKey = 194
BuiltinReaderNoKey = 196
BuiltinReaderWithKey = 199
Participant = 193
Implementations§
Trait Implementations§
Source§impl Clone for EntityKind
impl Clone for EntityKind
Source§fn clone(&self) -> EntityKind
fn clone(&self) -> EntityKind
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 EntityKind
impl Debug for EntityKind
Source§impl Hash for EntityKind
impl Hash for EntityKind
Source§impl Ord for EntityKind
impl Ord for EntityKind
Source§fn cmp(&self, other: &EntityKind) -> Ordering
fn cmp(&self, other: &EntityKind) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for EntityKind
impl PartialEq for EntityKind
Source§fn eq(&self, other: &EntityKind) -> bool
fn eq(&self, other: &EntityKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for EntityKind
impl PartialOrd for EntityKind
impl Copy for EntityKind
impl Eq for EntityKind
impl StructuralPartialEq for EntityKind
Auto Trait Implementations§
impl Freeze for EntityKind
impl RefUnwindSafe for EntityKind
impl Send for EntityKind
impl Sync for EntityKind
impl Unpin for EntityKind
impl UnsafeUnpin for EntityKind
impl UnwindSafe for EntityKind
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