pub enum ImageMediaType {
Png,
Jpeg,
Gif,
Webp,
Bmp,
}Variants§
Implementations§
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 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ImageMediaType
Source§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<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
impl Eq for ImageMediaType
Source§impl Hash for ImageMediaType
impl Hash for ImageMediaType
Source§impl PartialEq for ImageMediaType
impl PartialEq for ImageMediaType
Source§fn eq(&self, other: &ImageMediaType) -> bool
fn eq(&self, other: &ImageMediaType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ImageMediaType
impl Serialize for ImageMediaType
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 UnsafeUnpin for ImageMediaType
impl UnwindSafe for ImageMediaType
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