#[non_exhaustive]pub struct UnstableMediaPreviewConfigEventContent(pub MediaPreviewConfigEventContent);
Expand description
The content of an io.element.msc4278.media_preview_config
event,
the unstable version of m.media_preview_config
in global account data.
Tuple 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.0: MediaPreviewConfigEventContent
Trait Implementations§
Source§impl Clone for UnstableMediaPreviewConfigEventContent
impl Clone for UnstableMediaPreviewConfigEventContent
Source§fn clone(&self) -> UnstableMediaPreviewConfigEventContent
fn clone(&self) -> UnstableMediaPreviewConfigEventContent
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 Default for UnstableMediaPreviewConfigEventContent
impl Default for UnstableMediaPreviewConfigEventContent
Source§fn default() -> UnstableMediaPreviewConfigEventContent
fn default() -> UnstableMediaPreviewConfigEventContent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UnstableMediaPreviewConfigEventContent
impl<'de> Deserialize<'de> for UnstableMediaPreviewConfigEventContent
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<MediaPreviewConfigEventContent> for UnstableMediaPreviewConfigEventContent
impl From<MediaPreviewConfigEventContent> for UnstableMediaPreviewConfigEventContent
Source§fn from(value: MediaPreviewConfigEventContent) -> Self
fn from(value: MediaPreviewConfigEventContent) -> Self
Converts to this type from the input type.
Source§impl From<UnstableMediaPreviewConfigEventContent> for AnyGlobalAccountDataEventContent
impl From<UnstableMediaPreviewConfigEventContent> for AnyGlobalAccountDataEventContent
Source§fn from(c: UnstableMediaPreviewConfigEventContent) -> Self
fn from(c: UnstableMediaPreviewConfigEventContent) -> Self
Converts to this type from the input type.
Source§impl From<UnstableMediaPreviewConfigEventContent> for AnyRoomAccountDataEventContent
impl From<UnstableMediaPreviewConfigEventContent> for AnyRoomAccountDataEventContent
Source§fn from(c: UnstableMediaPreviewConfigEventContent) -> Self
fn from(c: UnstableMediaPreviewConfigEventContent) -> Self
Converts to this type from the input type.
Source§impl From<UnstableMediaPreviewConfigEventContent> for MediaPreviewConfigEventContent
impl From<UnstableMediaPreviewConfigEventContent> for MediaPreviewConfigEventContent
Source§fn from(value: UnstableMediaPreviewConfigEventContent) -> Self
fn from(value: UnstableMediaPreviewConfigEventContent) -> Self
Converts to this type from the input type.
Source§impl GlobalAccountDataEventContent for UnstableMediaPreviewConfigEventContent
impl GlobalAccountDataEventContent for UnstableMediaPreviewConfigEventContent
Source§fn event_type(&self) -> GlobalAccountDataEventType
fn event_type(&self) -> GlobalAccountDataEventType
Get the event’s type, like
m.push_rules
.Source§impl RoomAccountDataEventContent for UnstableMediaPreviewConfigEventContent
impl RoomAccountDataEventContent for UnstableMediaPreviewConfigEventContent
Source§fn event_type(&self) -> RoomAccountDataEventType
fn event_type(&self) -> RoomAccountDataEventType
Get the event’s type, like
m.tag
.impl JsonCastable<AnyGlobalAccountDataEventContent> for UnstableMediaPreviewConfigEventContent
impl JsonCastable<AnyRoomAccountDataEventContent> for UnstableMediaPreviewConfigEventContent
impl JsonCastable<Map<String, Value>> for UnstableMediaPreviewConfigEventContent
impl JsonCastable<MediaPreviewConfigEventContent> for UnstableMediaPreviewConfigEventContent
impl JsonCastable<UnstableMediaPreviewConfigEventContent> for MediaPreviewConfigEventContent
Auto Trait Implementations§
impl Freeze for UnstableMediaPreviewConfigEventContent
impl RefUnwindSafe for UnstableMediaPreviewConfigEventContent
impl Send for UnstableMediaPreviewConfigEventContent
impl Sync for UnstableMediaPreviewConfigEventContent
impl Unpin for UnstableMediaPreviewConfigEventContent
impl UnwindSafe for UnstableMediaPreviewConfigEventContent
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