pub enum ParseMimeTypeError {
InvalidInput,
UnknownMimeType,
}
Expand description
Error that caused MimeType
parsing error.
Variants§
Trait Implementations§
Source§impl Debug for ParseMimeTypeError
impl Debug for ParseMimeTypeError
Source§impl Display for ParseMimeTypeError
impl Display for ParseMimeTypeError
Source§impl Error for ParseMimeTypeError
impl Error for ParseMimeTypeError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for ParseMimeTypeError
impl PartialEq for ParseMimeTypeError
impl Eq for ParseMimeTypeError
impl StructuralPartialEq for ParseMimeTypeError
Auto Trait Implementations§
impl Freeze for ParseMimeTypeError
impl RefUnwindSafe for ParseMimeTypeError
impl Send for ParseMimeTypeError
impl Sync for ParseMimeTypeError
impl Unpin for ParseMimeTypeError
impl UnwindSafe for ParseMimeTypeError
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