#[non_exhaustive]pub enum AnyEphemeralRoomEventContent {
Receipt(ReceiptEventContent),
Typing(TypingEventContent),
}
Expand description
Any ephemeral room event.
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.
Trait Implementations§
source§impl Clone for AnyEphemeralRoomEventContent
impl Clone for AnyEphemeralRoomEventContent
source§fn clone(&self) -> AnyEphemeralRoomEventContent
fn clone(&self) -> AnyEphemeralRoomEventContent
Returns a copy 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 AnyEphemeralRoomEventContent
impl Debug for AnyEphemeralRoomEventContent
source§impl EventContent for AnyEphemeralRoomEventContent
impl EventContent for AnyEphemeralRoomEventContent
§type EventType = EphemeralRoomEventType
type EventType = EphemeralRoomEventType
The Rust enum for the event kind’s known types.
source§fn event_type(&self) -> Self::EventType
fn event_type(&self) -> Self::EventType
Get the event’s type, like
m.room.message
.source§impl From<ReceiptEventContent> for AnyEphemeralRoomEventContent
impl From<ReceiptEventContent> for AnyEphemeralRoomEventContent
source§fn from(c: ReceiptEventContent) -> Self
fn from(c: ReceiptEventContent) -> Self
Converts to this type from the input type.
source§impl From<TypingEventContent> for AnyEphemeralRoomEventContent
impl From<TypingEventContent> for AnyEphemeralRoomEventContent
source§fn from(c: TypingEventContent) -> Self
fn from(c: TypingEventContent) -> Self
Converts to this type from the input type.
impl EphemeralRoomEventContent for AnyEphemeralRoomEventContent
Auto Trait Implementations§
impl Freeze for AnyEphemeralRoomEventContent
impl RefUnwindSafe for AnyEphemeralRoomEventContent
impl Send for AnyEphemeralRoomEventContent
impl Sync for AnyEphemeralRoomEventContent
impl Unpin for AnyEphemeralRoomEventContent
impl UnwindSafe for AnyEphemeralRoomEventContent
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)