Enum AnyRoomAccountDataEvent
#[non_exhaustive]pub enum AnyRoomAccountDataEvent {
FullyRead(RoomAccountDataEvent<FullyReadEventContent>),
Tag(RoomAccountDataEvent<TagEventContent>),
MarkedUnread(RoomAccountDataEvent<MarkedUnreadEventContent>),
UnstableMarkedUnread(RoomAccountDataEvent<UnstableMarkedUnreadEventContent>),
MediaPreviewConfig(RoomAccountDataEvent<MediaPreviewConfigEventContent>),
UnstableMediaPreviewConfig(RoomAccountDataEvent<UnstableMediaPreviewConfigEventContent>),
}
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(RoomAccountDataEvent<FullyReadEventContent>)
m.fully_read
Tag(RoomAccountDataEvent<TagEventContent>)
m.tag
MarkedUnread(RoomAccountDataEvent<MarkedUnreadEventContent>)
m.marked_unread
UnstableMarkedUnread(RoomAccountDataEvent<UnstableMarkedUnreadEventContent>)
com.famedly.marked_unread
MediaPreviewConfig(RoomAccountDataEvent<MediaPreviewConfigEventContent>)
m.media_preview_config
UnstableMediaPreviewConfig(RoomAccountDataEvent<UnstableMediaPreviewConfigEventContent>)
io.element.msc4278.media_preview_config
Implementations§
§impl AnyRoomAccountDataEvent
impl AnyRoomAccountDataEvent
pub fn event_type(&self) -> RoomAccountDataEventType
pub fn event_type(&self) -> RoomAccountDataEventType
Returns the type
of this event.
pub fn content(&self) -> AnyRoomAccountDataEventContent
pub fn content(&self) -> AnyRoomAccountDataEventContent
Returns the content for this event.
Trait Implementations§
§impl Clone for AnyRoomAccountDataEvent
impl Clone for AnyRoomAccountDataEvent
§fn clone(&self) -> AnyRoomAccountDataEvent
fn clone(&self) -> AnyRoomAccountDataEvent
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 more§impl Debug for AnyRoomAccountDataEvent
impl Debug for AnyRoomAccountDataEvent
§impl<'de> Deserialize<'de> for AnyRoomAccountDataEvent
impl<'de> Deserialize<'de> for AnyRoomAccountDataEvent
§fn deserialize<D>(
deserializer: D,
) -> Result<AnyRoomAccountDataEvent, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<AnyRoomAccountDataEvent, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl From<RoomAccountDataEvent<FullyReadEventContent>> for AnyRoomAccountDataEvent
impl From<RoomAccountDataEvent<FullyReadEventContent>> for AnyRoomAccountDataEvent
§fn from(
c: RoomAccountDataEvent<FullyReadEventContent>,
) -> AnyRoomAccountDataEvent
fn from( c: RoomAccountDataEvent<FullyReadEventContent>, ) -> AnyRoomAccountDataEvent
Converts to this type from the input type.
§impl From<RoomAccountDataEvent<MarkedUnreadEventContent>> for AnyRoomAccountDataEvent
impl From<RoomAccountDataEvent<MarkedUnreadEventContent>> for AnyRoomAccountDataEvent
§fn from(
c: RoomAccountDataEvent<MarkedUnreadEventContent>,
) -> AnyRoomAccountDataEvent
fn from( c: RoomAccountDataEvent<MarkedUnreadEventContent>, ) -> AnyRoomAccountDataEvent
Converts to this type from the input type.
§impl From<RoomAccountDataEvent<MediaPreviewConfigEventContent>> for AnyRoomAccountDataEvent
impl From<RoomAccountDataEvent<MediaPreviewConfigEventContent>> for AnyRoomAccountDataEvent
§fn from(
c: RoomAccountDataEvent<MediaPreviewConfigEventContent>,
) -> AnyRoomAccountDataEvent
fn from( c: RoomAccountDataEvent<MediaPreviewConfigEventContent>, ) -> AnyRoomAccountDataEvent
Converts to this type from the input type.
§impl From<RoomAccountDataEvent<TagEventContent>> for AnyRoomAccountDataEvent
impl From<RoomAccountDataEvent<TagEventContent>> for AnyRoomAccountDataEvent
§fn from(c: RoomAccountDataEvent<TagEventContent>) -> AnyRoomAccountDataEvent
fn from(c: RoomAccountDataEvent<TagEventContent>) -> AnyRoomAccountDataEvent
Converts to this type from the input type.
§impl From<RoomAccountDataEvent<UnstableMarkedUnreadEventContent>> for AnyRoomAccountDataEvent
impl From<RoomAccountDataEvent<UnstableMarkedUnreadEventContent>> for AnyRoomAccountDataEvent
§fn from(
c: RoomAccountDataEvent<UnstableMarkedUnreadEventContent>,
) -> AnyRoomAccountDataEvent
fn from( c: RoomAccountDataEvent<UnstableMarkedUnreadEventContent>, ) -> AnyRoomAccountDataEvent
Converts to this type from the input type.
§impl From<RoomAccountDataEvent<UnstableMediaPreviewConfigEventContent>> for AnyRoomAccountDataEvent
impl From<RoomAccountDataEvent<UnstableMediaPreviewConfigEventContent>> for AnyRoomAccountDataEvent
§fn from(
c: RoomAccountDataEvent<UnstableMediaPreviewConfigEventContent>,
) -> AnyRoomAccountDataEvent
fn from( c: RoomAccountDataEvent<UnstableMediaPreviewConfigEventContent>, ) -> AnyRoomAccountDataEvent
Converts to this type from the input type.
impl<C> JsonCastable<AnyRoomAccountDataEvent> for RoomAccountDataEvent<C>where
C: RoomAccountDataEventContent,
impl JsonCastable<Map<String, Value>> for AnyRoomAccountDataEvent
impl SyncEvent for AnyRoomAccountDataEvent
Auto Trait Implementations§
impl Freeze for AnyRoomAccountDataEvent
impl RefUnwindSafe for AnyRoomAccountDataEvent
impl Send for AnyRoomAccountDataEvent
impl Sync for AnyRoomAccountDataEvent
impl Unpin for AnyRoomAccountDataEvent
impl UnwindSafe for AnyRoomAccountDataEvent
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,
§impl<T> CompatExt for T
impl<T> CompatExt for T
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Converts
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
, which can then be
downcast
into Box<dyn ConcreteType>
where ConcreteType
implements Trait
.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Converts
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
, which can then be further
downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Converts
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Converts
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.Source§impl<T> DowncastSend for T
impl<T> DowncastSend for T
Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
Source§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
Source§fn consume_handle(handle: Handle) -> Arc<T>
fn consume_handle(handle: Handle) -> Arc<T>
Consume a handle, getting back the initial
Arc<>
Source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
Source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more