[][src]Struct websocket::CloseData

pub struct CloseData {
    pub status_code: u16,
    pub reason: String,
}

Represents data contained in a Close message

Fields

status_code: u16

The status-code of the CloseData

reason: String

The reason-phrase of the CloseData

Implementations

impl CloseData[src]

pub fn new(status_code: u16, reason: String) -> CloseData[src]

Create a new CloseData object

pub fn into_bytes(self) -> Result<Vec<u8>, Error>[src]

Convert this into a vector of bytes

Trait Implementations

impl Clone for CloseData[src]

impl Debug for CloseData[src]

impl Eq for CloseData[src]

impl PartialEq<CloseData> for CloseData[src]

impl StructuralEq for CloseData[src]

impl StructuralPartialEq for CloseData[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any