Enum awc::ws::Frame [−][src]
pub enum Frame {
Text(Bytes),
Binary(Bytes),
Continuation(Item),
Ping(Bytes),
Pong(Bytes),
Close(Option<CloseReason>),
}
Expand description
WebSocket
frame
Variants
Text(Bytes)
Tuple Fields
0: Bytes
Text frame, codec does not verify utf8 encoding
Binary(Bytes)
Tuple Fields
0: Bytes
Binary frame
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
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Frame
impl UnwindSafe for Frame
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