Struct aws_smithy_http::result::ConnectorError
source · [−]pub struct ConnectorError { /* private fields */ }Expand description
Error from the underlying Connector
Connector exists to attach a ConnectorErrorKind to what would otherwise be an opaque Box<dyn Error>
that comes off a potentially generic or dynamic connector.
The attached kind is used to determine what retry behavior should occur (if any) based on the
connector error.
Implementations
sourceimpl ConnectorError
impl ConnectorError
sourcepub fn timeout(err: Box<dyn Error + Send + Sync>) -> Self
pub fn timeout(err: Box<dyn Error + Send + Sync>) -> Self
Construct a ConnectorError from an error caused by a timeout
Timeout errors are typically retried on a new connection.
sourcepub fn user(err: Box<dyn Error + Send + Sync>) -> Self
pub fn user(err: Box<dyn Error + Send + Sync>) -> Self
Construct a ConnectorError from an error caused by the user (e.g. invalid HTTP request)
sourcepub fn io(err: Box<dyn Error + Send + Sync>) -> Self
pub fn io(err: Box<dyn Error + Send + Sync>) -> Self
Construct a ConnectorError from an IO related error (e.g. socket hangup)
sourcepub fn other(err: Box<dyn Error + Send + Sync>, kind: Option<ErrorKind>) -> Self
pub fn other(err: Box<dyn Error + Send + Sync>, kind: Option<ErrorKind>) -> Self
Construct a ConnectorError from an different unclassified error.
Optionally, an explicit Kind may be passed.
sourcepub fn is_timeout(&self) -> bool
pub fn is_timeout(&self) -> bool
Returns true if the error is an timeout error
Trait Implementations
sourceimpl Debug for ConnectorError
impl Debug for ConnectorError
sourceimpl Display for ConnectorError
impl Display for ConnectorError
sourceimpl Error for ConnectorError
impl Error for ConnectorError
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations
impl !RefUnwindSafe for ConnectorError
impl Send for ConnectorError
impl Sync for ConnectorError
impl Unpin for ConnectorError
impl !UnwindSafe for ConnectorError
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