Enum actix_web::Body [−][src]
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
impl Debug for Body
[src]
[+]
impl Debug for Body
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