[][src]Enum ws_stream_wasm::WsState

pub enum WsState {
    Connecting,
    Open,
    Closing,
    Closed,
}

Indicates the state of a Websocket connection. The only state in which it's valid to send and receive messages is WsState::Open.

See MDN for the ready state values.

Variants

Connecting
Open
Closing
Closed

Trait Implementations

impl Clone for WsState[src]

impl Copy for WsState[src]

impl Debug for WsState[src]

impl Eq for WsState[src]

impl PartialEq<WsState> for WsState[src]

impl StructuralEq for WsState[src]

impl StructuralPartialEq for WsState[src]

impl TryFrom<u16> for WsState[src]

Internally ready state is a u16, so it's possible to create one from a u16. Only 0-3 are valid values.

See MDN for the ready state values.

type Error = WsErr

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for WsState

impl Send for WsState

impl Sync for WsState

impl Unpin for WsState

impl UnwindSafe for WsState

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> 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.