pub enum FaviconMimeType {
Ico,
Png,
Svg,
Gif,
Jpeg,
Webp,
}
Variants§
Ico
.ico (image/x-icon)
Png
.png (image/png)
Svg
.svg (image/svg+xml)
Gif
.gif (image/gif)
Jpeg
.jpg (image/jpeg)
Webp
.webp (image/webp)
Trait Implementations§
Source§impl Clone for FaviconMimeType
impl Clone for FaviconMimeType
Source§fn clone(&self) -> FaviconMimeType
fn clone(&self) -> FaviconMimeType
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 FaviconMimeType
impl Debug for FaviconMimeType
Auto Trait Implementations§
impl Freeze for FaviconMimeType
impl RefUnwindSafe for FaviconMimeType
impl Send for FaviconMimeType
impl Sync for FaviconMimeType
impl Unpin for FaviconMimeType
impl UnwindSafe for FaviconMimeType
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