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 Debug for CleartextConnectErrorfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Display for CleartextConnectError[src]
impl Display for CleartextConnectErrorfn fmt(&self, fmt: &mut Formatter) -> Result[src]
fn fmt(&self, fmt: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Error for CleartextConnectError[src]
impl Error for CleartextConnectErrorfn description(&self) -> &str[src]
fn description(&self) -> &strThis method is soft-deprecated. Read more
fn cause(&self) -> Option<&Error>[src]
fn cause(&self) -> Option<&Error>The lower-level cause of this error, if any. Read more
impl From<Error> for CleartextConnectError[src]
impl From<Error> for CleartextConnectErrorFor convenience we make sure that io::Errors are easily convertible to
the CleartextConnectError, if needed.
fn from(e: Error) -> CleartextConnectError[src]
fn from(e: Error) -> CleartextConnectErrorPerforms the conversion.
impl HttpConnectError for CleartextConnectError[src]
impl HttpConnectError for CleartextConnectErrorThe error is marked as an HttpConnectError
Auto Trait Implementations
impl Send for CleartextConnectError
impl Send for CleartextConnectErrorimpl Sync for CleartextConnectError
impl Sync for CleartextConnectError