[−][src]Enum actix_web::Binary
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]
pub fn is_empty(&self) -> bool[src]
Returns true if body is empty
pub fn len(&self) -> usize[src]
Length of body in bytes
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 Responder for Binary[src]
type 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]
impl Into<Bytes> for Binary[src]
impl PartialEq<Binary> for Binary[src]
impl AsRef<[u8]> for Binary[src]
impl From<&'static str> for Binary[src]
impl From<&'static [u8]> for Binary[src]
impl From<Vec<u8>> for Binary[src]
impl From<Cow<'static, [u8]>> for Binary[src]
impl From<String> for Binary[src]
impl From<Cow<'static, str>> for Binary[src]
impl<'a> From<&'a String> for Binary[src]
impl From<Bytes> for Binary[src]
impl From<BytesMut> for Binary[src]
impl From<Arc<String>> for Binary[src]
impl<'a> From<&'a Arc<String>> for Binary[src]
impl From<Arc<Vec<u8>>> for Binary[src]
impl<'a> From<&'a Arc<Vec<u8>>> for Binary[src]
impl Clone for Binary[src]
fn clone(&self) -> Binary[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Debug for Binary[src]
Auto Trait Implementations
Blanket Implementations
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T> From for T[src]
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.