Enum actix_http::body::Body
source · [−]pub enum Body {
None,
Empty,
Bytes(Bytes),
Message(Box<dyn MessageBody + Unpin>),
}Expand description
Represents various types of http message body.
Variants
None
Empty response. Content-Length header is not set.
Empty
Zero sized response body. Content-Length header is set to 0.
Bytes(Bytes)
Specific response body.
Message(Box<dyn MessageBody + Unpin>)
Generic message body.
Implementations
Create body from generic message body.
Trait Implementations
Performs the conversion.
Performs the conversion.
Auto Trait Implementations
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
pub fn vzip(self) -> V
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
