Enum websocket_client::SocketMessage[][src]

pub enum SocketMessage {
    Text(String),
    Binary(Vec<u8>),
}

Variants

Trait Implementations

impl Debug for SocketMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for SocketMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations