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§
source§impl ConnectorError
impl ConnectorError
sourcepub fn timeout(source: Box<dyn Error + Send + Sync>) -> Self
pub fn timeout(source: 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(source: Box<dyn Error + Send + Sync>) -> Self
pub fn user(source: Box<dyn Error + Send + Sync>) -> Self
Construct a ConnectorError
from an error caused by the user (e.g. invalid HTTP request)
sourcepub fn io(source: Box<dyn Error + Send + Sync>) -> Self
pub fn io(source: Box<dyn Error + Send + Sync>) -> Self
Construct a ConnectorError
from an IO related error (e.g. socket hangup)
sourcepub fn other(
source: Box<dyn Error + Send + Sync>,
kind: Option<ErrorKind>
) -> Self
pub fn other( source: 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§
source§impl Debug for ConnectorError
impl Debug for ConnectorError
source§impl Display for ConnectorError
impl Display for ConnectorError
source§impl Error for ConnectorError
impl Error for ConnectorError
source§fn 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 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()