Struct websocket::header::WebSocketKey [−][src]
Represents a Sec-WebSocket-Key header.
Methods
impl WebSocketKey[src]
impl WebSocketKeypub fn new() -> WebSocketKey[src]
pub fn new() -> WebSocketKeyGenerate a new, random WebSocketKey
pub fn serialize(&self) -> String[src]
pub fn serialize(&self) -> StringReturn the Base64 encoding of this WebSocketKey
Trait Implementations
impl PartialEq for WebSocketKey[src]
impl PartialEq for WebSocketKeyfn eq(&self, other: &WebSocketKey) -> bool[src]
fn eq(&self, other: &WebSocketKey) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &WebSocketKey) -> bool[src]
fn ne(&self, other: &WebSocketKey) -> boolThis method tests for !=.
impl Clone for WebSocketKey[src]
impl Clone for WebSocketKeyfn clone(&self) -> WebSocketKey[src]
fn clone(&self) -> WebSocketKeyReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Copy for WebSocketKey[src]
impl Copy for WebSocketKeyimpl Default for WebSocketKey[src]
impl Default for WebSocketKeyfn default() -> WebSocketKey[src]
fn default() -> WebSocketKeyReturns the "default value" for a type. Read more
impl Debug for WebSocketKey[src]
impl Debug for WebSocketKeyfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl FromStr for WebSocketKey[src]
impl FromStr for WebSocketKeytype Err = WebSocketError
The associated error which can be returned from parsing.
fn from_str(key: &str) -> WebSocketResult<WebSocketKey>[src]
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]
impl Header for WebSocketKeyfn header_name() -> &'static str[src]
fn header_name() -> &'static strReturns the name of the header field this belongs to. Read more
fn parse_header(raw: &[Vec<u8>]) -> Result<WebSocketKey>[src]
fn parse_header(raw: &[Vec<u8>]) -> Result<WebSocketKey>Parse a header from a raw stream of bytes. Read more
impl HeaderFormat for WebSocketKey[src]
impl HeaderFormat for WebSocketKeyfn fmt_header(&self, fmt: &mut Formatter) -> Result[src]
fn fmt_header(&self, fmt: &mut Formatter) -> ResultFormat a header to be output into a TcpStream. Read more
Auto Trait Implementations
impl Send for WebSocketKey
impl Send for WebSocketKeyimpl Sync for WebSocketKey
impl Sync for WebSocketKey