#[non_exhaustive]pub struct RoomAccountDataEvent<C>where
    C: RoomAccountDataEventContent,{
    pub content: C,
}Available on crate feature 
events only.Expand description
A room account data event.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional 
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.content: CData specific to the event type.
Implementations§
Source§impl<C> RoomAccountDataEvent<C>where
    C: RoomAccountDataEventContent,
 
impl<C> RoomAccountDataEvent<C>where
    C: RoomAccountDataEventContent,
Sourcepub fn new(content: C) -> RoomAccountDataEvent<C>
 
pub fn new(content: C) -> RoomAccountDataEvent<C>
Construct a new RoomAccountDataEvent with the given content.
Trait Implementations§
Source§impl<C> Clone for RoomAccountDataEvent<C>where
    C: Clone + RoomAccountDataEventContent,
 
impl<C> Clone for RoomAccountDataEvent<C>where
    C: Clone + RoomAccountDataEventContent,
Source§fn clone(&self) -> RoomAccountDataEvent<C>
 
fn clone(&self) -> RoomAccountDataEvent<C>
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<C> Debug for RoomAccountDataEvent<C>where
    C: Debug + RoomAccountDataEventContent,
 
impl<C> Debug for RoomAccountDataEvent<C>where
    C: Debug + RoomAccountDataEventContent,
Source§impl<'de, C> Deserialize<'de> for RoomAccountDataEvent<C>where
    C: RoomAccountDataEventContent + EventContentFromType,
 
impl<'de, C> Deserialize<'de> for RoomAccountDataEvent<C>where
    C: RoomAccountDataEventContent + EventContentFromType,
Source§fn deserialize<D>(
    deserializer: D,
) -> Result<RoomAccountDataEvent<C>, <D as Deserializer<'de>>::Error>where
    D: Deserializer<'de>,
 
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
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<MediaPreviewConfigEventContent>> for AnyRoomAccountDataEvent
 
impl From<RoomAccountDataEvent<MediaPreviewConfigEventContent>> for AnyRoomAccountDataEvent
Source§fn from(
    c: RoomAccountDataEvent<MediaPreviewConfigEventContent>,
) -> AnyRoomAccountDataEvent
 
fn from( c: RoomAccountDataEvent<MediaPreviewConfigEventContent>, ) -> AnyRoomAccountDataEvent
Converts to this type from the input type.
Source§impl From<RoomAccountDataEvent<SpaceOrderEventContent>> for AnyRoomAccountDataEvent
 
impl From<RoomAccountDataEvent<SpaceOrderEventContent>> for AnyRoomAccountDataEvent
Source§fn from(
    c: RoomAccountDataEvent<SpaceOrderEventContent>,
) -> AnyRoomAccountDataEvent
 
fn from( c: RoomAccountDataEvent<SpaceOrderEventContent>, ) -> 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
 
impl From<RoomAccountDataEvent<UnstableMarkedUnreadEventContent>> for AnyRoomAccountDataEvent
Source§fn from(
    c: RoomAccountDataEvent<UnstableMarkedUnreadEventContent>,
) -> AnyRoomAccountDataEvent
 
fn from( c: RoomAccountDataEvent<UnstableMarkedUnreadEventContent>, ) -> AnyRoomAccountDataEvent
Converts to this type from the input type.
Source§impl From<RoomAccountDataEvent<UnstableMediaPreviewConfigEventContent>> for AnyRoomAccountDataEvent
 
impl From<RoomAccountDataEvent<UnstableMediaPreviewConfigEventContent>> for AnyRoomAccountDataEvent
Source§fn from(
    c: RoomAccountDataEvent<UnstableMediaPreviewConfigEventContent>,
) -> AnyRoomAccountDataEvent
 
fn from( c: RoomAccountDataEvent<UnstableMediaPreviewConfigEventContent>, ) -> AnyRoomAccountDataEvent
Converts to this type from the input type.
Source§impl<C> Serialize for RoomAccountDataEvent<C>where
    C: RoomAccountDataEventContent,
 
impl<C> Serialize for RoomAccountDataEvent<C>where
    C: RoomAccountDataEventContent,
Source§fn serialize<S>(
    &self,
    serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
    S: Serializer,
 
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
impl<C> JsonCastable<AnyRoomAccountDataEvent> for RoomAccountDataEvent<C>where
    C: RoomAccountDataEventContent,
impl<C> JsonCastable<Map<String, Value>> for RoomAccountDataEvent<C>where
    C: RoomAccountDataEventContent,
Auto Trait Implementations§
impl<C> Freeze for RoomAccountDataEvent<C>where
    C: Freeze,
impl<C> RefUnwindSafe for RoomAccountDataEvent<C>where
    C: RefUnwindSafe,
impl<C> Send for RoomAccountDataEvent<C>where
    C: Send,
impl<C> Sync for RoomAccountDataEvent<C>where
    C: Sync,
impl<C> Unpin for RoomAccountDataEvent<C>where
    C: Unpin,
impl<C> UnwindSafe for RoomAccountDataEvent<C>where
    C: UnwindSafe,
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