[][src]Struct websocket_codec::ClientRequest

pub struct ClientRequest { /* fields omitted */ }

A client's opening handshake.

Implementations

impl ClientRequest[src]

pub fn parse<'a, F>(header: F) -> Result<Self> where
    F: Fn(&'static str) -> Option<&'a str> + 'a, 
[src]

Parses the client's opening handshake.

pub fn ws_accept_buf(&self, s: &mut String)[src]

Copies the value that the client expects to see in the server's Sec-WebSocket-Accept header into a String.

pub fn ws_accept(&self) -> String[src]

Returns the value that the client expects to see in the server's Sec-WebSocket-Accept header.

Auto Trait Implementations

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, 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>,