[][src]Struct tungstenite::handshake::client::ClientHandshake

pub struct ClientHandshake<S> { /* fields omitted */ }

Client handshake role.

Implementations

impl<S: Read + Write> ClientHandshake<S>[src]

pub fn start(
    stream: S,
    request: Request,
    config: Option<WebSocketConfig>
) -> Result<MidHandshake<Self>>
[src]

Initiate a client handshake.

Trait Implementations

impl<S: Debug> Debug for ClientHandshake<S>[src]

impl<S: Read + Write> HandshakeRole for ClientHandshake<S>[src]

type IncomingData = Response

type InternalStream = S

type FinalResult = (WebSocket<S>, Response)

Auto Trait Implementations

impl<S> RefUnwindSafe for ClientHandshake<S> where
    S: RefUnwindSafe
[src]

impl<S> Send for ClientHandshake<S> where
    S: Send
[src]

impl<S> Sync for ClientHandshake<S> where
    S: Sync
[src]

impl<S> Unpin for ClientHandshake<S> where
    S: Unpin
[src]

impl<S> UnwindSafe for ClientHandshake<S> where
    S: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,