Enum actix_web::ws::Message
[−]
[src]
pub enum Message {
Text(String),
Binary(Binary),
Ping(String),
Pong(String),
Close(Option<CloseReason>),
}WebSocket Message
Variants
Text(String)Binary(Binary)Ping(String)Pong(String)Close(Option<CloseReason>)
Trait Implementations
impl Message for Message[src]
type Result = ()
The type of value that this message will resolved with if it is successful. Read more
impl Debug for Message[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more