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
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,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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