Enum tungstenite::protocol::frame::coding::Data [−][src]
pub enum Data { Continue, Text, Binary, Reserved(u8), }
Data opcodes as in RFC 6455
Variants
Continue
0x0 denotes a continuation frame
Text
0x1 denotes a text frame
Binary
0x2 denotes a binary frame
Reserved(u8)
0x3-7 are reserved for further non-control frames
Trait Implementations
impl Debug for Data
[src]
impl Debug for Data
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl PartialEq for Data
[src]
impl PartialEq for Data
fn eq(&self, other: &Data) -> bool
[src]
fn eq(&self, other: &Data) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Data) -> bool
[src]
fn ne(&self, other: &Data) -> bool
This method tests for !=
.
impl Eq for Data
[src]
impl Eq for Data
impl Clone for Data
[src]
impl Clone for Data
fn clone(&self) -> Data
[src]
fn clone(&self) -> Data
Returns 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 Data
[src]
impl Copy for Data
impl Display for Data
[src]
impl Display for Data