Enum ruma::events::AnyRoomAccountDataEvent
source · pub enum AnyRoomAccountDataEvent {
FullyRead(RoomAccountDataEvent<FullyReadEventContent>),
Tag(RoomAccountDataEvent<TagEventContent>),
MarkedUnread(RoomAccountDataEvent<MarkedUnreadEventContent>),
UnstableMarkedUnread(RoomAccountDataEvent<UnstableMarkedUnreadEventContent>),
// some variants omitted
}
Available on crate feature
events
only.Expand description
Any room account data event.
Variants§
FullyRead(RoomAccountDataEvent<FullyReadEventContent>)
m.fully_read
Tag(RoomAccountDataEvent<TagEventContent>)
m.tag
MarkedUnread(RoomAccountDataEvent<MarkedUnreadEventContent>)
m.marked_unread
UnstableMarkedUnread(RoomAccountDataEvent<UnstableMarkedUnreadEventContent>)
Available on crate feature
unstable-msc2867
only.com.famedly.marked_unread
Implementations§
source§impl AnyRoomAccountDataEvent
impl AnyRoomAccountDataEvent
sourcepub fn event_type(&self) -> RoomAccountDataEventType
pub fn event_type(&self) -> RoomAccountDataEventType
Returns the type
of this event.
sourcepub fn content(&self) -> AnyRoomAccountDataEventContent
pub fn content(&self) -> AnyRoomAccountDataEventContent
Returns the content for this event.
Trait Implementations§
source§impl Clone for AnyRoomAccountDataEvent
impl Clone for AnyRoomAccountDataEvent
source§fn clone(&self) -> AnyRoomAccountDataEvent
fn clone(&self) -> AnyRoomAccountDataEvent
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 AnyRoomAccountDataEvent
impl Debug for AnyRoomAccountDataEvent
source§impl<'de> Deserialize<'de> for AnyRoomAccountDataEvent
impl<'de> Deserialize<'de> for AnyRoomAccountDataEvent
source§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
source§impl From<RoomAccountDataEvent<FullyReadEventContent>> for AnyRoomAccountDataEvent
impl From<RoomAccountDataEvent<FullyReadEventContent>> for AnyRoomAccountDataEvent
source§fn from(
c: RoomAccountDataEvent<FullyReadEventContent>,
) -> AnyRoomAccountDataEvent
fn from( c: RoomAccountDataEvent<FullyReadEventContent>, ) -> AnyRoomAccountDataEvent
Converts to this type from the input type.
source§impl From<RoomAccountDataEvent<MarkedUnreadEventContent>> for AnyRoomAccountDataEvent
impl From<RoomAccountDataEvent<MarkedUnreadEventContent>> for AnyRoomAccountDataEvent
source§fn from(
c: RoomAccountDataEvent<MarkedUnreadEventContent>,
) -> AnyRoomAccountDataEvent
fn from( c: RoomAccountDataEvent<MarkedUnreadEventContent>, ) -> AnyRoomAccountDataEvent
Converts to this type from the input type.
source§impl From<RoomAccountDataEvent<TagEventContent>> for AnyRoomAccountDataEvent
impl From<RoomAccountDataEvent<TagEventContent>> for AnyRoomAccountDataEvent
source§fn from(c: RoomAccountDataEvent<TagEventContent>) -> AnyRoomAccountDataEvent
fn from(c: RoomAccountDataEvent<TagEventContent>) -> AnyRoomAccountDataEvent
Converts to this type from the input type.
source§impl From<RoomAccountDataEvent<UnstableMarkedUnreadEventContent>> for AnyRoomAccountDataEvent
Available on crate feature unstable-msc2867
only.
impl From<RoomAccountDataEvent<UnstableMarkedUnreadEventContent>> for AnyRoomAccountDataEvent
Available on crate feature
unstable-msc2867
only.source§fn from(
c: RoomAccountDataEvent<UnstableMarkedUnreadEventContent>,
) -> AnyRoomAccountDataEvent
fn from( c: RoomAccountDataEvent<UnstableMarkedUnreadEventContent>, ) -> AnyRoomAccountDataEvent
Converts to this type from the input type.
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,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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,
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§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