pub enum BuildRouteAwareHttpClientError {
CustomCa(BuildCustomCaTransportError),
InvalidProxyConfig {
route_class: ClientRouteClass,
},
}Expand description
Error while building a resolver-aware reqwest client.
Variants§
Trait Implementations§
Source§impl Error for BuildRouteAwareHttpClientError
impl Error for BuildRouteAwareHttpClientError
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()
Source§impl From<BuildCustomCaTransportError> for BuildRouteAwareHttpClientError
impl From<BuildCustomCaTransportError> for BuildRouteAwareHttpClientError
Source§fn from(source: BuildCustomCaTransportError) -> Self
fn from(source: BuildCustomCaTransportError) -> Self
Converts to this type from the input type.
Source§impl From<BuildRouteAwareHttpClientError> for Error
impl From<BuildRouteAwareHttpClientError> for Error
Source§fn from(error: BuildRouteAwareHttpClientError) -> Self
fn from(error: BuildRouteAwareHttpClientError) -> Self
Converts to this type from the input type.
Source§impl From<BuildRouteAwareHttpClientError> for RouteAwareClientPoolError
impl From<BuildRouteAwareHttpClientError> for RouteAwareClientPoolError
Source§fn from(source: BuildRouteAwareHttpClientError) -> Self
fn from(source: BuildRouteAwareHttpClientError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for BuildRouteAwareHttpClientError
impl !UnwindSafe for BuildRouteAwareHttpClientError
impl Freeze for BuildRouteAwareHttpClientError
impl Send for BuildRouteAwareHttpClientError
impl Sync for BuildRouteAwareHttpClientError
impl Unpin for BuildRouteAwareHttpClientError
impl UnsafeUnpin for BuildRouteAwareHttpClientError
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