[−][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]
impl Binary
pub fn is_empty(&self) -> bool
[src]
pub fn is_empty(&self) -> bool
Returns true
if body is empty
pub fn len(&self) -> usize
[src]
pub fn len(&self) -> usize
Length of body in bytes
pub fn from_slice(s: &[u8]) -> Binary
[src]
pub fn from_slice(s: &[u8]) -> Binary
Create binary body from slice
pub fn take(&mut self) -> Bytes
[src]
pub fn take(&mut self) -> Bytes
Convert Binary to a Bytes instance
Trait Implementations
impl Responder for Binary
[src]
impl Responder for Binary
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]
fn respond_to<S>(self, req: &HttpRequest<S>) -> Result<HttpResponse, Error>
Convert itself to AsyncResult
or Error
.
impl AsRef<[u8]> for Binary
[src]
impl AsRef<[u8]> for Binary
impl PartialEq<Binary> for Binary
[src]
impl PartialEq<Binary> for Binary
fn eq(&self, other: &Binary) -> bool
[src]
fn eq(&self, other: &Binary) -> bool
This 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) -> bool
This method tests for !=
.
impl From<&'static str> for Binary
[src]
impl From<&'static str> for Binary
impl From<&'static [u8]> for Binary
[src]
impl From<&'static [u8]> for Binary
impl From<Vec<u8>> for Binary
[src]
impl From<Vec<u8>> for Binary
impl From<String> for Binary
[src]
impl From<String> for Binary
impl<'a> From<&'a String> for Binary
[src]
impl<'a> From<&'a String> for Binary
impl From<Bytes> for Binary
[src]
impl From<Bytes> for Binary
impl From<BytesMut> for Binary
[src]
impl From<BytesMut> for Binary
impl From<Arc<String>> for Binary
[src]
impl From<Arc<String>> for Binary
impl<'a> From<&'a Arc<String>> for Binary
[src]
impl<'a> From<&'a Arc<String>> for Binary
impl From<Arc<Vec<u8>>> for Binary
[src]
impl From<Arc<Vec<u8>>> for Binary
impl<'a> From<&'a Arc<Vec<u8>>> for Binary
[src]
impl<'a> From<&'a Arc<Vec<u8>>> for Binary
impl Clone for Binary
[src]
impl Clone for Binary
fn clone(&self) -> Binary
[src]
fn clone(&self) -> Binary
Returns 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)
Performs copy-assignment from source
. Read more
impl Into<Bytes> for Binary
[src]
impl Into<Bytes> for Binary
impl Debug for Binary
[src]
impl Debug for Binary
Auto Trait Implementations
Blanket Implementations
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
type Owned = T
fn to_owned(&self) -> T
[src]
fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
fn clone_into(&self, target: &mut T)
[src]
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T> From for T
[src]
impl<T> From for T
impl<T, U> Into for T where
U: From<T>,
[src]
impl<T, U> Into for T where
U: From<T>,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
impl<T, U> TryFrom for T where
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
try_from
)Performs the conversion.
impl<T> Borrow for T where
T: ?Sized,
[src]
impl<T> Borrow for T where
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
impl<T> BorrowMut for T where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
try_from
)Performs the conversion.
impl<T> Any for T where
T: 'static + ?Sized,
[src]
impl<T> Any for T where
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
fn get_type_id(&self) -> TypeId
🔬 This is a nightly-only experimental API. (get_type_id
)
this method will likely be replaced by an associated static
Gets the TypeId
of self
. Read more
impl<T> Erased for T
impl<T> Erased for T