Struct simple_websockets::Responder[][src]

pub struct Responder { /* fields omitted */ }

Sends outgoing messages to a websocket. Every connected websocket client has a corresponding Responder.

Responders can be safely cloned and sent across threads, to be used in a multi-producer single-consumer paradigm.

Implementations

impl Responder[src]

pub fn send(&self, message: Message) -> bool[src]

Sends a message to the client represented by this Responder.

Returns true if the message was sent, or false if it wasn’t sent (because the client is disconnected).

Note that this doesn’t need a mutable reference to self.

pub fn close(&self)[src]

Closes this client’s connection.

Note that this doesn’t need a mutable reference to self.

pub fn client_id(&self) -> u64[src]

The id of the client that this Responder is connected to.

Trait Implementations

impl Clone for Responder[src]

impl Debug for Responder[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<V, T> VZip<V> for T where
    V: MultiLane<T>,