Type Alias tungstenite::handshake::client::Request

source ·
pub type Request = Request<()>;
Expand description

Client request type.

Aliased Type§

struct Request {
    head: Parts,
    body: (),
}

Fields§

§head: Parts§body: ()

Trait Implementations§

source§

impl IntoClientRequest for Request

source§

fn into_client_request(self) -> Result<Request>

Convert into a Request that can be used for a client connection.