Trait actix_web::ws::WsWriter [] [src]

pub trait WsWriter {
    fn text<T: Into<Binary>>(&mut self, text: T);
fn binary<B: Into<Binary>>(&mut self, data: B);
fn ping(&mut self, message: &str);
fn pong(&mut self, message: &str);
fn close(&mut self, reason: Option<CloseReason>); }

Common writing methods for a websocket.

Required Methods

Send a text

Send a binary

Send a ping message

Send a pong message

Close the connection

Implementors