pub enum WriterError {
Io(Error),
Utf8Error(FromUtf8Error),
UrlParse(ParseError),
Reqwest(Error),
NoEntrypoint,
InvalidFormat,
InvalidHead,
}
Variants§
Io(Error)
Utf8Error(FromUtf8Error)
UrlParse(ParseError)
Reqwest(Error)
NoEntrypoint
InvalidFormat
InvalidHead
Trait Implementations§
source§impl Debug for WriterError
impl Debug for WriterError
source§impl Display for WriterError
impl Display for WriterError
source§impl Error for WriterError
impl Error for WriterError
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.81.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<Error> for WriterError
impl From<Error> for WriterError
source§impl From<Error> for WriterError
impl From<Error> for WriterError
source§impl From<FromUtf8Error> for WriterError
impl From<FromUtf8Error> for WriterError
source§fn from(source: FromUtf8Error) -> Self
fn from(source: FromUtf8Error) -> Self
Converts to this type from the input type.
source§impl From<ParseError> for WriterError
impl From<ParseError> for WriterError
source§fn from(source: ParseError) -> Self
fn from(source: ParseError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for WriterError
impl !RefUnwindSafe for WriterError
impl Send for WriterError
impl Sync for WriterError
impl Unpin for WriterError
impl !UnwindSafe for WriterError
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