Struct solicit::http::client::CleartextConnector [−][src]
A struct that establishes a cleartext TCP connection that can be used by an HTTP/2 connection. Defaults to using port 80.
It assumes that the connection is based on prior knowledge of the server's support for HTTP/2.
More information in the spec
Fields
host: &'a str
The host to which the connection should be established
port: u16
The port on which the connection should be established
Methods
impl<'a> CleartextConnector<'a>
[src]
impl<'a> CleartextConnector<'a>
pub fn new(host: &'a str) -> CleartextConnector
[src]
pub fn new(host: &'a str) -> CleartextConnector
Creates a new CleartextConnector
that will attempt to establish a connection to the given
host on port 80.
pub fn with_port(host: &'a str, port: u16) -> CleartextConnector
[src]
pub fn with_port(host: &'a str, port: u16) -> CleartextConnector
Creates a new CleartextConnector
that will attempt to establish a connection to the given
host on the given port.
Trait Implementations
impl<'a> HttpConnect for CleartextConnector<'a>
[src]
impl<'a> HttpConnect for CleartextConnector<'a>
type Stream = TcpStream
The type of the underlying transport stream that the HttpConnection
s produced by this HttpConnect
implementation will be based on. Read more
type Err = CleartextConnectError
The type of the error that can be produced by trying to establish the connection (i.e. calling the connect
method). Read more
fn connect(self) -> Result<ClientStream<TcpStream>, CleartextConnectError>
[src]
fn connect(self) -> Result<ClientStream<TcpStream>, CleartextConnectError>
Establishes a cleartext TCP connection based on the host and port.
If it is not possible, returns an HttpError
.
Auto Trait Implementations
impl<'a> Send for CleartextConnector<'a>
impl<'a> Send for CleartextConnector<'a>
impl<'a> Sync for CleartextConnector<'a>
impl<'a> Sync for CleartextConnector<'a>