Enum tokio_proto::streaming::pipeline::Frame
[−]
[src]
pub enum Frame<T, B, E> { Message { message: T, body: bool, }, Body { chunk: Option<B>, }, Error { error: E, }, }
A pipelined protocol frame
Variants
Message
Either a request or a response
Fields of Message
message: T | The message value |
body: bool | Set to true when body frames will follow |
Body
Body frame. None indicates that the body is done streaming.
Fields of Body
chunk: Option<B> | Body chunk. Setting to |
Error
Error
Fields of Error
error: E | Error value |
Methods
impl<T, B, E> Frame<T, B, E>
[src]
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
.