Struct websocket::header::WebSocketKey[][src]

pub struct WebSocketKey(pub [u8; 16]);

Represents a Sec-WebSocket-Key header.

Methods

impl WebSocketKey
[src]

Generate a new, random WebSocketKey

Return the Base64 encoding of this WebSocketKey

Trait Implementations

impl PartialEq for WebSocketKey
[src]

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

This method tests for !=.

impl Clone for WebSocketKey
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for WebSocketKey
[src]

impl Default for WebSocketKey
[src]

Returns the "default value" for a type. Read more

impl Debug for WebSocketKey
[src]

Formats the value using the given formatter. Read more

impl FromStr for WebSocketKey
[src]

The associated error which can be returned from parsing.

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

impl Header for WebSocketKey
[src]

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

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

impl HeaderFormat for WebSocketKey
[src]

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

Auto Trait Implementations