pub enum ImageMimeType {
Png,
Jpeg,
Webp,
Heic,
Heif,
}Expand description
Supported image MIME types
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ImageMimeType
impl Clone for ImageMimeType
Source§fn clone(&self) -> ImageMimeType
fn clone(&self) -> ImageMimeType
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 Debug for ImageMimeType
impl Debug for ImageMimeType
Source§impl<'de> Deserialize<'de> for ImageMimeType
impl<'de> Deserialize<'de> for ImageMimeType
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 PartialEq for ImageMimeType
impl PartialEq for ImageMimeType
Source§impl Serialize for ImageMimeType
impl Serialize for ImageMimeType
impl StructuralPartialEq for ImageMimeType
Auto Trait Implementations§
impl Freeze for ImageMimeType
impl RefUnwindSafe for ImageMimeType
impl Send for ImageMimeType
impl Sync for ImageMimeType
impl Unpin for ImageMimeType
impl UnsafeUnpin for ImageMimeType
impl UnwindSafe for ImageMimeType
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