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]
impl Bodypub fn is_streaming(&self) -> bool[src]
pub fn is_streaming(&self) -> boolDoes this body streaming.
pub fn is_binary(&self) -> bool[src]
pub fn is_binary(&self) -> boolIs this binary body.
pub fn is_empty(&self) -> bool[src]
pub fn is_empty(&self) -> boolIs this binary empy.
pub fn from_slice(s: &[u8]) -> Body[src]
pub fn from_slice(s: &[u8]) -> BodyCreate body from slice (copy)
Trait Implementations
impl PartialEq for Body[src]
impl PartialEq for Bodyfn eq(&self, other: &Body) -> bool[src]
fn eq(&self, other: &Body) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
#[must_use]
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool1.0.0
[src]This method tests for !=.
impl Debug for Body[src]
impl Debug for Bodyfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl<T> From<T> for Body where
T: Into<Binary>, [src]
impl<T> From<T> for Body where
T: Into<Binary>, impl From<Box<ActorHttpContext>> for Body[src]
impl From<Box<ActorHttpContext>> for Body