Struct websocket::header::WebSocketAccept [] [src]

pub struct WebSocketAccept(_);

Represents a Sec-WebSocket-Accept header

Methods

impl WebSocketAccept
[src]

[src]

Create a new WebSocketAccept from the given WebSocketKey

[src]

Return the Base64 encoding of this WebSocketAccept

Trait Implementations

impl PartialEq for WebSocketAccept
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Clone for WebSocketAccept
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for WebSocketAccept
[src]

impl Debug for WebSocketAccept
[src]

[src]

Formats the value using the given formatter. Read more

impl FromStr for WebSocketAccept
[src]

The associated error which can be returned from parsing.

[src]

Parses a string s to return a value of this type. Read more

impl Header for WebSocketAccept
[src]

[src]

Returns the name of the header field this belongs to. Read more

[src]

Parse a header from a raw stream of bytes. Read more

impl HeaderFormat for WebSocketAccept
[src]

[src]

Format a header to be output into a TcpStream. Read more

Auto Trait Implementations