pub enum Error {
Reqwest(Error),
IO(Error),
}Expand description
HTTP client error
Variants§
Reqwest(Error)
Represents an underlying error from Reqwest HTTP client when processing a request.
IO(Error)
Represents an IO error when doing file operations.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Error
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more