[][src]Struct parsec_interface::requests::response::ResponseBody

pub struct ResponseBody { /* fields omitted */ }

Wrapper around the body of a response.

Hides the contents and keeps them immutable.

Implementations

impl ResponseBody[src]

pub fn bytes(&self) -> &[u8][src]

Get the body as a slice of bytes.

pub fn len(&self) -> usize[src]

Get the size of the body.

pub fn is_empty(&self) -> bool[src]

Check if body is empty.

Trait Implementations

impl Debug for ResponseBody[src]

impl<'de> Deserialize<'de> for ResponseBody[src]

impl Drop for ResponseBody[src]

impl PartialEq<ResponseBody> for ResponseBody[src]

impl Serialize for ResponseBody[src]

impl StructuralPartialEq for ResponseBody[src]

impl Zeroize for ResponseBody[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.