Enum actix_web::Body
[−]
[src]
pub enum Body {
Empty,
Binary(Binary),
Streaming(BodyStream),
Actor(Box<ActorHttpContext>),
}Represents various types of http message body.
Variants
EmptyEmpty response. Content-Length header is set to 0
Binary(Binary)Specific response body.
Streaming(BodyStream)Unspecified streaming response. Developer is responsible for setting
right Content-Length or Transfer-Encoding headers.
Actor(Box<ActorHttpContext>)Special body type for actor response.
Methods
impl Body[src]
pub fn is_streaming(&self) -> bool[src]
Does this body streaming.
pub fn is_binary(&self) -> bool[src]
Is this binary body.
pub fn is_empty(&self) -> bool[src]
Is this binary empy.
pub fn from_slice(s: &[u8]) -> Body[src]
Create body from slice (copy)
Trait Implementations
impl PartialEq for Body[src]
fn eq(&self, other: &Body) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
This method tests for !=.
impl Debug for Body[src]
fn fmt(&self, f: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl<T> From<T> for Body where
T: Into<Binary>, [src]
T: Into<Binary>,
impl From<Box<ActorHttpContext>> for Body[src]
impl<A, S> From<HttpContext<A, S>> for Body where
A: Actor<Context = HttpContext<A, S>>,
S: 'static, [src]
A: Actor<Context = HttpContext<A, S>>,
S: 'static,
fn from(ctx: HttpContext<A, S>) -> Body[src]
Performs the conversion.
impl<A, S> From<WebsocketContext<A, S>> for Body where
A: Actor<Context = WebsocketContext<A, S>>,
S: 'static, [src]
A: Actor<Context = WebsocketContext<A, S>>,
S: 'static,
fn from(ctx: WebsocketContext<A, S>) -> Body[src]
Performs the conversion.