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