Enum actix_web::Binary [−][src]
pub enum Binary {
Bytes(Bytes),
Slice(&'static [u8]),
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 vec body
Methods
impl Binary[src]
impl Binarypub fn is_empty(&self) -> bool[src]
pub fn is_empty(&self) -> boolReturns true if body is empty
pub fn len(&self) -> usize[src]
pub fn len(&self) -> usizeLength of body in bytes
pub fn from_slice(s: &[u8]) -> Binary[src]
pub fn from_slice(s: &[u8]) -> BinaryCreate binary body from slice
pub fn take(&mut self) -> Bytes[src]
pub fn take(&mut self) -> BytesConvert Binary to a Bytes instance
Trait Implementations
impl Debug for Binary[src]
impl Debug for Binaryfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for Binary[src]
impl PartialEq for Binaryfn eq(&self, other: &Binary) -> bool[src]
fn eq(&self, other: &Binary) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Binary) -> bool[src]
fn ne(&self, other: &Binary) -> boolThis method tests for !=.
impl Clone for Binary[src]
impl Clone for Binaryfn clone(&self) -> Binary[src]
fn clone(&self) -> BinaryReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Into<Bytes> for Binary[src]
impl Into<Bytes> for Binaryimpl From<&'static str> for Binary[src]
impl From<&'static str> for Binaryimpl From<&'static [u8]> for Binary[src]
impl From<&'static [u8]> for Binaryimpl From<Vec<u8>> for Binary[src]
impl From<Vec<u8>> for Binaryimpl From<String> for Binary[src]
impl From<String> for Binaryimpl<'a> From<&'a String> for Binary[src]
impl<'a> From<&'a String> for Binaryimpl From<Bytes> for Binary[src]
impl From<Bytes> for Binaryimpl From<BytesMut> for Binary[src]
impl From<BytesMut> for Binaryimpl From<Arc<String>> for Binary[src]
impl From<Arc<String>> for Binaryimpl<'a> From<&'a Arc<String>> for Binary[src]
impl<'a> From<&'a Arc<String>> for Binaryimpl From<Arc<Vec<u8>>> for Binary[src]
impl From<Arc<Vec<u8>>> for Binaryimpl<'a> From<&'a Arc<Vec<u8>>> for Binary[src]
impl<'a> From<&'a Arc<Vec<u8>>> for Binaryimpl AsRef<[u8]> for Binary[src]
impl AsRef<[u8]> for Binaryimpl Responder for Binary[src]
impl Responder for Binarytype Item = HttpResponse
The associated item which can be returned.
type Error = Error
The associated error which can be returned.
fn respond_to<S>(self, req: &HttpRequest<S>) -> Result<HttpResponse, Error>[src]
fn respond_to<S>(self, req: &HttpRequest<S>) -> Result<HttpResponse, Error>Convert itself to AsyncResult or Error.