Enum ruma_common::events::EventKind
source · [−]#[non_exhaustive]
pub enum EventKind {
GlobalAccountData,
RoomAccountData,
EphemeralRoomData,
MessageLike {
redacted: bool,
},
State {
redacted: bool,
},
ToDevice,
Presence,
}Available on crate feature
events only.Expand description
The “kind” of an event.
This corresponds directly to the event content marker traits.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
GlobalAccountData
Global account data event kind.
RoomAccountData
Room account data event kind.
EphemeralRoomData
Ephemeral room event kind.
MessageLike
Fields
redacted: boolRedacted variation?
Message-like event kind.
Since redacted / non-redacted message-like events are used in the same places but have different sets of fields, these two variations are treated as two closely-related event kinds.
State
Fields
redacted: boolRedacted variation?
State event kind.
Since redacted / non-redacted state events are used in the same places but have different sets of fields, these two variations are treated as two closely-related event kinds.
ToDevice
To-device event kind.
Presence
Presence event kind.
Trait Implementations
sourceimpl Ord for EventKind
impl Ord for EventKind
1.21.0 · sourceconst fn max(self, other: Self) -> Self
const fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourceconst fn min(self, other: Self) -> Self
const fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourceconst fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
const fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialOrd<EventKind> for EventKind
impl PartialOrd<EventKind> for EventKind
sourcefn partial_cmp(&self, other: &EventKind) -> Option<Ordering>
fn partial_cmp(&self, other: &EventKind) -> Option<Ordering>
1.0.0 · sourceconst fn le(&self, other: &Rhs) -> bool
const fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Copy for EventKind
impl Eq for EventKind
impl StructuralEq for EventKind
impl StructuralPartialEq for EventKind
Auto Trait Implementations
impl RefUnwindSafe for EventKind
impl Send for EventKind
impl Sync for EventKind
impl Unpin for EventKind
impl UnwindSafe for EventKind
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.