Enum tokio_proto::streaming::multiplex::Frame
[−]
[src]
pub enum Frame<T, B, E> { Message { id: RequestId, message: T, body: bool, solo: bool, }, Body { id: RequestId, chunk: Option<B>, }, Error { id: RequestId, error: E, }, }
A multiplexed protocol frame
Variants
Message
Either a request or a response.
Fields of Message
id: RequestId | Message exchange identifier |
message: T | The message value |
body: bool | Set to true when body frames will follow with the same request ID. |
solo: bool | Set to |
Body
Body frame.
Fields of Body
id: RequestId | Message exchange identifier |
chunk: Option<B> | Body chunk. Setting to |
Error
Error
Fields of Error
id: RequestId | Message exchange identifier |
error: E | Error value |
Methods
impl<T, B, E> Frame<T, B, E>
[src]
fn request_id(&self) -> RequestId
[src]
Return the request ID associated with the frame.
fn unwrap_msg(self) -> T
[src]
Unwraps a frame, yielding the content of the Message
.
fn unwrap_body(self) -> Option<B>
[src]
Unwraps a frame, yielding the content of the Body
.
fn unwrap_err(self) -> E
[src]
Unwraps a frame, yielding the content of the Error
.