Struct websocket::header::WebSocketKey
[−]
[src]
pub struct WebSocketKey(pub [u8; 16]);
Represents a Sec-WebSocket-Key header.
Methods
impl WebSocketKey[src]
fn new() -> WebSocketKey
Generate a new, random WebSocketKey
fn serialize(&self) -> String
Return the Base64 encoding of this WebSocketKey
Trait Implementations
impl PartialEq for WebSocketKey[src]
fn eq(&self, __arg_0: &WebSocketKey) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &WebSocketKey) -> bool
This method tests for !=.
impl Clone for WebSocketKey[src]
fn clone(&self) -> WebSocketKey
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Copy for WebSocketKey[src]
impl Debug for WebSocketKey[src]
impl FromStr for WebSocketKey[src]
type Err = WebSocketError
The associated error which can be returned from parsing.
fn from_str(key: &str) -> WebSocketResult<WebSocketKey>
Parses a string s to return a value of this type. Read more
impl Header for WebSocketKey[src]
fn header_name() -> &'static str
Returns the name of the header field this belongs to. Read more
fn parse_header(raw: &[Vec<u8>]) -> Result<WebSocketKey>
Parse a header from a raw stream of bytes. Read more
impl HeaderFormat for WebSocketKey[src]
fn fmt_header(&self, fmt: &mut Formatter) -> Result
Format a header to be output into a TcpStream. Read more