Enum actix_web::Body [−][src]
pub enum Body { Empty, Binary(Binary), Streaming(BodyStream), Actor(Box<ActorHttpContext>), }
Represents various types of http message body.
Variants
Empty
Empty 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 Body
pub fn is_streaming(&self) -> bool
[src]
pub fn is_streaming(&self) -> bool
Does this body streaming.
pub fn is_binary(&self) -> bool
[src]
pub fn is_binary(&self) -> bool
Is this binary body.
pub fn is_empty(&self) -> bool
[src]
pub fn is_empty(&self) -> bool
Is this binary empy.
pub fn from_slice(s: &[u8]) -> Body
[src]
pub fn from_slice(s: &[u8]) -> Body
Create body from slice (copy)
Trait Implementations
impl PartialEq for Body
[src]
impl PartialEq for Body
fn eq(&self, other: &Body) -> bool
[src]
fn eq(&self, other: &Body) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]This method tests for !=
.
impl Debug for Body
[src]
impl Debug for Body
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats 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