pub enum HttpRequestError {
UrlParseError(ParseError),
HttpError(Error),
HyperError(Error),
IOError(Error),
FromUtf8Error(FromUtf8Error),
TooLarge,
Other(&'static str),
}
Variants
UrlParseError(ParseError)
HttpError(Error)
HyperError(Error)
IOError(Error)
FromUtf8Error(FromUtf8Error)
TooLarge
Other(&'static str)
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for HttpRequestError
impl Send for HttpRequestError
impl Sync for HttpRequestError
impl Unpin for HttpRequestError
impl !UnwindSafe for HttpRequestError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more