Struct solicit::http::client::CleartextConnectError
[−]
[src]
pub struct CleartextConnectError(_);
A newtype wrapping the io::Error
, as it occurs when attempting to
establish an HTTP/2 connection over cleartext TCP (with prior knowledge).
Trait Implementations
impl Display for CleartextConnectError
impl Error for CleartextConnectError
fn description(&self) -> &str
fn cause(&self) -> Option<&Error>
impl From<Error> for CleartextConnectError
For convenience we make sure that io::Error
s are easily convertible to
the CleartextConnectError
, if needed.
fn from(e: Error) -> CleartextConnectError
impl HttpConnectError for CleartextConnectError
The error is marked as an HttpConnectError