pub enum ImageMediaType {
Png,
Jpeg,
Webp,
Gif,
}Expand description
A supported image media type for an inline image turn.
Variants§
Png
Portable Network Graphics.
Jpeg
JPEG image data.
Webp
WebP image data.
Gif
Graphics Interchange Format.
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
impl Eq for ImageMediaType
Source§impl Hash for ImageMediaType
impl Hash for ImageMediaType
Source§impl PartialEq for ImageMediaType
impl PartialEq 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