Enum matrix_sdk::attachment::AttachmentInfo
source · pub enum AttachmentInfo {
Image(BaseImageInfo),
Video(BaseVideoInfo),
Audio(BaseAudioInfo),
File(BaseFileInfo),
Voice {
audio_info: BaseAudioInfo,
waveform: Option<Vec<u16>>,
},
}
Expand description
Types of metadata for an attachment.
Variants§
Image(BaseImageInfo)
The metadata of an image.
Video(BaseVideoInfo)
The metadata of a video.
Audio(BaseAudioInfo)
The metadata of an audio clip.
File(BaseFileInfo)
The metadata of a file.
Voice
The metadata of a voice message
Trait Implementations§
source§impl Debug for AttachmentInfo
impl Debug for AttachmentInfo
source§impl From<AttachmentInfo> for AudioInfo
impl From<AttachmentInfo> for AudioInfo
source§fn from(info: AttachmentInfo) -> Self
fn from(info: AttachmentInfo) -> Self
Converts to this type from the input type.
source§impl From<AttachmentInfo> for FileInfo
impl From<AttachmentInfo> for FileInfo
source§fn from(info: AttachmentInfo) -> Self
fn from(info: AttachmentInfo) -> Self
Converts to this type from the input type.
source§impl From<AttachmentInfo> for ImageInfo
impl From<AttachmentInfo> for ImageInfo
source§fn from(info: AttachmentInfo) -> Self
fn from(info: AttachmentInfo) -> Self
Converts to this type from the input type.
source§impl From<AttachmentInfo> for VideoInfo
impl From<AttachmentInfo> for VideoInfo
source§fn from(info: AttachmentInfo) -> Self
fn from(info: AttachmentInfo) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AttachmentInfo
impl RefUnwindSafe for AttachmentInfo
impl Send for AttachmentInfo
impl Sync for AttachmentInfo
impl Unpin for AttachmentInfo
impl UnwindSafe for AttachmentInfo
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
§impl<T> CompatExt for T
impl<T> CompatExt for T
source§impl<T> FutureExt for T
impl<T> FutureExt for T
source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
source§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
source§fn consume_handle(handle: Handle) -> Arc<T>
fn consume_handle(handle: Handle) -> Arc<T>
Consume a handle, getting back the initial
Arc<>
source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more