#[non_exhaustive]pub enum AnyRoomAccountDataEventContent {
FullyRead(FullyReadEventContent),
Tag(TagEventContent),
MarkedUnread(MarkedUnreadEventContent),
UnstableMarkedUnread(UnstableMarkedUnreadEventContent),
MediaPreviewConfig(MediaPreviewConfigEventContent),
UnstableMediaPreviewConfig(UnstableMediaPreviewConfigEventContent),
SpaceOrder(SpaceOrderEventContent),
}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
MediaPreviewConfig(MediaPreviewConfigEventContent)
m.media_preview_config
UnstableMediaPreviewConfig(UnstableMediaPreviewConfigEventContent)
io.element.msc4278.media_preview_config
SpaceOrder(SpaceOrderEventContent)
m.space_order
This variant uses the unstable type org.matrix.msc3230.space_order.
This variant can also be deserialized from the m.space_order type.
Trait Implementations§
Source§impl Clone for AnyRoomAccountDataEventContent
impl Clone for AnyRoomAccountDataEventContent
Source§fn clone(&self) -> AnyRoomAccountDataEventContent
fn clone(&self) -> AnyRoomAccountDataEventContent
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 From<FullyReadEventContent> for AnyRoomAccountDataEventContent
impl From<FullyReadEventContent> for AnyRoomAccountDataEventContent
Source§fn from(c: FullyReadEventContent) -> Self
fn from(c: FullyReadEventContent) -> Self
Converts to this type from the input type.
Source§impl From<MarkedUnreadEventContent> for AnyRoomAccountDataEventContent
impl From<MarkedUnreadEventContent> for AnyRoomAccountDataEventContent
Source§fn from(c: MarkedUnreadEventContent) -> Self
fn from(c: MarkedUnreadEventContent) -> Self
Converts to this type from the input type.
Source§impl From<MediaPreviewConfigEventContent> for AnyRoomAccountDataEventContent
Available on crate feature unstable-msc4278 only.
impl From<MediaPreviewConfigEventContent> for AnyRoomAccountDataEventContent
Available on crate feature
unstable-msc4278 only.Source§fn from(c: MediaPreviewConfigEventContent) -> Self
fn from(c: MediaPreviewConfigEventContent) -> Self
Converts to this type from the input type.
Source§impl From<SpaceOrderEventContent> for AnyRoomAccountDataEventContent
Available on crate feature unstable-msc3230 only.
impl From<SpaceOrderEventContent> for AnyRoomAccountDataEventContent
Available on crate feature
unstable-msc3230 only.Source§fn from(c: SpaceOrderEventContent) -> Self
fn from(c: SpaceOrderEventContent) -> Self
Converts to this type from the input type.
Source§impl From<TagEventContent> for AnyRoomAccountDataEventContent
impl From<TagEventContent> for AnyRoomAccountDataEventContent
Source§fn from(c: TagEventContent) -> Self
fn from(c: TagEventContent) -> Self
Converts to this type from the input type.
Source§impl From<UnstableMarkedUnreadEventContent> for AnyRoomAccountDataEventContent
Available on crate feature unstable-msc2867 only.
impl From<UnstableMarkedUnreadEventContent> for AnyRoomAccountDataEventContent
Available on crate feature
unstable-msc2867 only.Source§fn from(c: UnstableMarkedUnreadEventContent) -> Self
fn from(c: UnstableMarkedUnreadEventContent) -> Self
Converts to this type from the input type.
Source§impl From<UnstableMediaPreviewConfigEventContent> for AnyRoomAccountDataEventContent
Available on crate feature unstable-msc4278 only.
impl From<UnstableMediaPreviewConfigEventContent> for AnyRoomAccountDataEventContent
Available on crate feature
unstable-msc4278 only.Source§fn from(c: UnstableMediaPreviewConfigEventContent) -> Self
fn from(c: UnstableMediaPreviewConfigEventContent) -> Self
Converts to this type from the input type.
Source§impl RoomAccountDataEventContent for AnyRoomAccountDataEventContent
impl RoomAccountDataEventContent for AnyRoomAccountDataEventContent
Source§fn event_type(&self) -> RoomAccountDataEventType
fn event_type(&self) -> RoomAccountDataEventType
Get the event’s type, like
m.tag.impl JsonCastable<AnyRoomAccountDataEventContent> for FullyReadEventContent
impl JsonCastable<AnyRoomAccountDataEventContent> for MarkedUnreadEventContent
impl JsonCastable<AnyRoomAccountDataEventContent> for MediaPreviewConfigEventContent
Available on crate feature
unstable-msc4278 only.impl JsonCastable<AnyRoomAccountDataEventContent> for SpaceOrderEventContent
Available on crate feature
unstable-msc3230 only.impl JsonCastable<AnyRoomAccountDataEventContent> for TagEventContent
impl JsonCastable<AnyRoomAccountDataEventContent> for UnstableMarkedUnreadEventContent
Available on crate feature
unstable-msc2867 only.impl JsonCastable<AnyRoomAccountDataEventContent> for UnstableMediaPreviewConfigEventContent
Available on crate feature
unstable-msc4278 only.impl JsonCastable<Map<String, Value>> 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