Enum awc::ws::Message [−][src]
pub enum Message {
Text(String),
Binary(Bytes),
Continuation(Item),
Ping(Bytes),
Pong(Bytes),
Close(Option<CloseReason>),
Nop,
}
Expand description
WebSocket
Message
Variants
Text(String)
Tuple Fields
0: String
Text message
Binary(Bytes)
Tuple Fields
0: Bytes
Binary message
Continuation(Item)
Tuple Fields
0: Item
Continuation
Ping(Bytes)
Tuple Fields
0: Bytes
Ping message
Pong(Bytes)
Tuple Fields
0: Bytes
Pong message
Close(Option<CloseReason>)
Tuple Fields
0: Option<CloseReason>
Close message with optional reason
Nop
No-op. Useful for actix-net services
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Message
impl UnwindSafe for Message
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more