Type Alias FullyReadEvent

pub type FullyReadEvent = RoomAccountDataEvent<FullyReadEventContent>;
Expand description

An m.fully_read event.

Aliased Type§

struct FullyReadEvent {
    pub content: FullyReadEventContent,
}

Fields§

§content: FullyReadEventContent

Data specific to the event type.

Trait Implementations

§

impl<C> Clone for RoomAccountDataEvent<C>

§

fn clone(&self) -> RoomAccountDataEvent<C>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl<C> Debug for RoomAccountDataEvent<C>

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl<'de, C> Deserialize<'de> for RoomAccountDataEvent<C>

§

fn deserialize<D>( deserializer: D, ) -> Result<RoomAccountDataEvent<C>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl<C> Serialize for RoomAccountDataEvent<C>

§

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
Source§

impl<C> SyncEvent for RoomAccountDataEvent<C>