pub enum AnyRoomAccountDataEvent {
FullyRead(FullyReadEvent),
Tag(TagEvent),
MarkedUnread(MarkedUnreadEvent),
UnstableMarkedUnread(UnstableMarkedUnreadEvent),
// some variants omitted
}
Expand description
Any room account data event.
Variants§
FullyRead(FullyReadEvent)
m.fully_read
Tag(TagEvent)
m.tag
MarkedUnread(MarkedUnreadEvent)
m.marked_unread
UnstableMarkedUnread(UnstableMarkedUnreadEvent)
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<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::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: FullyReadEvent) -> Self
fn from(c: FullyReadEvent) -> Self
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: MarkedUnreadEvent) -> Self
fn from(c: MarkedUnreadEvent) -> Self
Converts to this type from the input type.
source§impl From<RoomAccountDataEvent<UnstableMarkedUnreadEventContent>> for AnyRoomAccountDataEvent
impl From<RoomAccountDataEvent<UnstableMarkedUnreadEventContent>> for AnyRoomAccountDataEvent
source§fn from(c: UnstableMarkedUnreadEvent) -> Self
fn from(c: UnstableMarkedUnreadEvent) -> Self
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
)