[][src]Struct hyper_multipart_rfc7578::client::multipart::Body

pub struct Body(_);

Trait Implementations

impl Into<Body> for Body[src]

impl From<Body<'static>> for Body[src]

impl Payload for Body[src]

type Data = Cursor<Bytes>

A buffer of bytes representing a single chunk of a body.

type Error = Error

The error type of this stream.

fn poll_data(&mut self) -> Poll<Option<Self::Data>, Self::Error>[src]

Implement Payload so Body can be used with a hyper client.

fn poll_trailers(
    &mut self
) -> Result<Async<Option<HeaderMap<HeaderValue>>>, Self::Error>
[src]

Poll for an optional single HeaderMap of trailers. Read more

fn is_end_stream(&self) -> bool[src]

A hint that the Body is complete, and doesn't need to be polled more. Read more

fn content_length(&self) -> Option<u64>[src]

Return a length of the total bytes that will be streamed, if known. Read more

Auto Trait Implementations

impl Send for Body

impl !Sync for Body

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Erased for T