pub enum ImageMediaType {
JPEG,
PNG,
GIF,
WEBP,
HEIC,
HEIF,
SVG,
}Expand description
Describes the image media type of the content. Not every provider supports every media type. Convertible to and from MIME type strings.
Variants§
Trait Implementations§
Source§impl Clone for ImageMediaType
impl Clone for ImageMediaType
Source§fn clone(&self) -> ImageMediaType
fn clone(&self) -> ImageMediaType
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ImageMediaType
impl Debug for ImageMediaType
Source§impl<'de> Deserialize<'de> for ImageMediaType
impl<'de> Deserialize<'de> for ImageMediaType
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ImageMediaType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ImageMediaType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<ImageFormat> for ImageMediaType
impl From<ImageFormat> for ImageMediaType
Source§fn from(format: ImageFormat) -> ImageMediaType
fn from(format: ImageFormat) -> ImageMediaType
Converts to this type from the input type.
Source§impl MimeType for ImageMediaType
impl MimeType for ImageMediaType
fn from_mime_type(mime_type: &str) -> Option<ImageMediaType>
fn to_mime_type(&self) -> &'static str
Source§impl PartialEq for ImageMediaType
impl PartialEq for ImageMediaType
Source§impl Serialize for ImageMediaType
impl Serialize for ImageMediaType
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
Source§impl TryFrom<ImageMediaType> for ImageFormat
impl TryFrom<ImageMediaType> for ImageFormat
Source§type Error = MessageError
type Error = MessageError
The type returned in the event of a conversion error.
Source§fn try_from(
media_type: ImageMediaType,
) -> Result<ImageFormat, <ImageFormat as TryFrom<ImageMediaType>>::Error>
fn try_from( media_type: ImageMediaType, ) -> Result<ImageFormat, <ImageFormat as TryFrom<ImageMediaType>>::Error>
Performs the conversion.
impl StructuralPartialEq for ImageMediaType
Auto Trait Implementations§
impl Freeze for ImageMediaType
impl RefUnwindSafe for ImageMediaType
impl Send for ImageMediaType
impl Sync for ImageMediaType
impl Unpin for ImageMediaType
impl UnwindSafe for ImageMediaType
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)