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 Debug for CleartextConnectError
[src]
impl Display for CleartextConnectError
[src]
impl Error for CleartextConnectError
[src]
fn description(&self) -> &str
A short description of the error. Read more
fn cause(&self) -> Option<&Error>
The lower-level cause of this error, if any. Read more
impl From<Error> for CleartextConnectError
[src]
For convenience we make sure that io::Error
s are easily convertible to
the CleartextConnectError
, if needed.
fn from(e: Error) -> CleartextConnectError
Performs the conversion.
impl HttpConnectError for CleartextConnectError
[src]
The error is marked as an HttpConnectError