Struct tungstenite::handshake::MidHandshake[][src]

pub struct MidHandshake<Role: HandshakeRole> { /* fields omitted */ }

A WebSocket handshake.

Implementations

impl<Role: HandshakeRole> MidHandshake<Role>[src]

pub fn get_ref(&self) -> &HandshakeMachine<Role::InternalStream>[src]

Allow access to machine

pub fn get_mut(&mut self) -> &mut HandshakeMachine<Role::InternalStream>[src]

Allow mutable access to machine

pub fn handshake(
    mut self: Self
) -> Result<Role::FinalResult, HandshakeError<Role>>
[src]

Restarts the handshake process.

Trait Implementations

impl<Role: Debug + HandshakeRole> Debug for MidHandshake<Role> where
    Role::InternalStream: Debug
[src]

Auto Trait Implementations

impl<Role> RefUnwindSafe for MidHandshake<Role> where
    Role: RefUnwindSafe,
    <Role as HandshakeRole>::InternalStream: RefUnwindSafe
[src]

impl<Role> Send for MidHandshake<Role> where
    Role: Send,
    <Role as HandshakeRole>::InternalStream: Send
[src]

impl<Role> Sync for MidHandshake<Role> where
    Role: Sync,
    <Role as HandshakeRole>::InternalStream: Sync
[src]

impl<Role> Unpin for MidHandshake<Role> where
    Role: Unpin,
    <Role as HandshakeRole>::InternalStream: Unpin
[src]

impl<Role> UnwindSafe for MidHandshake<Role> where
    Role: UnwindSafe,
    <Role as HandshakeRole>::InternalStream: 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>,