#[non_exhaustive]pub enum AnyRoomAccountDataEventContent {
FullyRead(FullyReadEventContent),
Tag(TagEventContent),
MarkedUnread(MarkedUnreadEventContent),
UnstableMarkedUnread(UnstableMarkedUnreadEventContent),
}
Expand description
Any room account data 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.
FullyRead(FullyReadEventContent)
m.fully_read
Tag(TagEventContent)
m.tag
MarkedUnread(MarkedUnreadEventContent)
m.marked_unread
UnstableMarkedUnread(UnstableMarkedUnreadEventContent)
com.famedly.marked_unread
Trait Implementations§
source§impl Clone for AnyRoomAccountDataEventContent
impl Clone for AnyRoomAccountDataEventContent
source§fn clone(&self) -> AnyRoomAccountDataEventContent
fn clone(&self) -> AnyRoomAccountDataEventContent
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 EventContent for AnyRoomAccountDataEventContent
impl EventContent for AnyRoomAccountDataEventContent
§type EventType = RoomAccountDataEventType
type EventType = RoomAccountDataEventType
The Rust enum for the event kind’s known types.
source§fn event_type(
&self,
) -> <AnyRoomAccountDataEventContent as EventContent>::EventType
fn event_type( &self, ) -> <AnyRoomAccountDataEventContent as EventContent>::EventType
Get the event’s type, like
m.room.message
.source§impl EventContentFromType for AnyRoomAccountDataEventContent
impl EventContentFromType for AnyRoomAccountDataEventContent
source§fn from_parts(
event_type: &str,
json: &RawValue,
) -> Result<AnyRoomAccountDataEventContent, Error>
fn from_parts( event_type: &str, json: &RawValue, ) -> Result<AnyRoomAccountDataEventContent, Error>
Constructs this event content from the given event type and JSON.
source§impl From<FullyReadEventContent> for AnyRoomAccountDataEventContent
impl From<FullyReadEventContent> for AnyRoomAccountDataEventContent
source§fn from(c: FullyReadEventContent) -> AnyRoomAccountDataEventContent
fn from(c: FullyReadEventContent) -> AnyRoomAccountDataEventContent
Converts to this type from the input type.
source§impl From<MarkedUnreadEventContent> for AnyRoomAccountDataEventContent
impl From<MarkedUnreadEventContent> for AnyRoomAccountDataEventContent
source§fn from(c: MarkedUnreadEventContent) -> AnyRoomAccountDataEventContent
fn from(c: MarkedUnreadEventContent) -> AnyRoomAccountDataEventContent
Converts to this type from the input type.
source§impl From<TagEventContent> for AnyRoomAccountDataEventContent
impl From<TagEventContent> for AnyRoomAccountDataEventContent
source§fn from(c: TagEventContent) -> AnyRoomAccountDataEventContent
fn from(c: TagEventContent) -> AnyRoomAccountDataEventContent
Converts to this type from the input type.
source§impl From<UnstableMarkedUnreadEventContent> for AnyRoomAccountDataEventContent
impl From<UnstableMarkedUnreadEventContent> for AnyRoomAccountDataEventContent
source§fn from(c: UnstableMarkedUnreadEventContent) -> AnyRoomAccountDataEventContent
fn from(c: UnstableMarkedUnreadEventContent) -> AnyRoomAccountDataEventContent
Converts to this type from the input type.
source§impl Serialize for AnyRoomAccountDataEventContent
impl Serialize for AnyRoomAccountDataEventContent
source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl RoomAccountDataEventContent for AnyRoomAccountDataEventContent
Auto Trait Implementations§
impl Freeze for AnyRoomAccountDataEventContent
impl RefUnwindSafe for AnyRoomAccountDataEventContent
impl Send for AnyRoomAccountDataEventContent
impl Sync for AnyRoomAccountDataEventContent
impl Unpin for AnyRoomAccountDataEventContent
impl UnwindSafe for AnyRoomAccountDataEventContent
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
)