[][src]Enum rust_wasm_websocket::websocket_mod::WsMessageToServer

pub enum WsMessageToServer {
    MsgRequestWsUid {
        msg_sender_ws_uid: usize,
    },
    MsgPing {
        msg_id: u32,
    },
}

WsMessageToServer enum for WebSocket The ws server will perform an action according to this type.

Variants

MsgRequestWsUid

Request WebSocket Uid - first message to WebSocket server

Fields of MsgRequestWsUid

msg_sender_ws_uid: usize

ws client instance unique id. To not listen the echo to yourself.

MsgPing

MsgPing

Fields of MsgPing

msg_id: u32

random msg_id

Trait Implementations

impl Clone for WsMessageToServer[src]

impl<'de> Deserialize<'de> for WsMessageToServer[src]

impl Serialize for WsMessageToServer[src]

Auto Trait Implementations

impl RefUnwindSafe for WsMessageToServer

impl Send for WsMessageToServer

impl Sync for WsMessageToServer

impl Unpin for WsMessageToServer

impl UnwindSafe for WsMessageToServer

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,