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

fn fmt(&self, fmt: &mut Formatter) -> Result

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::Errors are easily convertible to the CleartextConnectError, if needed.

fn from(e: Error) -> CleartextConnectError

impl HttpConnectError for CleartextConnectError

The error is marked as an HttpConnectError

Derived Implementations

impl Debug for CleartextConnectError

fn fmt(&self, __arg_0: &mut Formatter) -> Result