Enum actix_web::Binary
[−]
[src]
pub enum Binary {
Bytes(Bytes),
Slice(&'static [u8]),
SharedString(Rc<String>),
SharedVec(Arc<Vec<u8>>),
// some variants omitted
}Represents various types of binary body.
Content-Length header is set to length of the body.
Variants
Bytes(Bytes)Bytes body
Slice(&'static [u8])Static slice
Shared string body
Shared vec body
Methods
impl Binary[src]
pub fn is_empty(&self) -> bool[src]
pub fn len(&self) -> usize[src]
pub fn from_slice(s: &[u8]) -> Binary[src]
Create binary body from slice
pub fn take(&mut self) -> Bytes[src]
Convert Binary to a Bytes instance
Trait Implementations
impl Debug for Binary[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl PartialEq for Binary[src]
fn eq(&self, __arg_0: &Binary) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Binary) -> bool[src]
This method tests for !=.
impl Clone for Binary[src]
fn clone(&self) -> Binary[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more