#[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 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 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 EventContent for UnstableMediaPreviewConfigEventContent
impl EventContent for UnstableMediaPreviewConfigEventContent
Source§type EventType = GlobalAccountDataEventType
type EventType = GlobalAccountDataEventType
The Rust enum for the event kind’s known types.
Source§fn event_type(&self) -> Self::EventType
fn event_type(&self) -> Self::EventType
Get the event’s type, like
m.room.message
.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 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.
impl GlobalAccountDataEventContent for UnstableMediaPreviewConfigEventContent
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