pub struct Error { /* private fields */ }
Implementations§
Source§impl Error
impl Error
Sourcepub fn new_timeout() -> Self
pub fn new_timeout() -> Self
Create a timeout error
This is valid for use in tests as well as production implementations of the trait, if application-layer timeouts are being implemented.
Sourcepub fn is_user(&self) -> bool
pub fn is_user(&self) -> bool
Returns true if this error the result of the Hyper API being incorrectly used (a “user” error in Hyper)
Sourcepub fn is_timeout(&self) -> bool
pub fn is_timeout(&self) -> bool
Returns true if this error is the result of a timeout when trying to full-fill the request
Note: Connect timeouts may be returned as io errors, not timeouts, depending on where in the network / http client stack the timeout occurs in.
Trait Implementations§
Source§impl Error for Error
impl Error for Error
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()
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§
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