net::connector

Type Alias BoxedBody

Source
pub type BoxedBody = BoxBody<Bytes, Error>;

Aliased Type§

struct BoxedBody { /* private fields */ }

Implementations

Source§

impl<D, E> BoxBody<D, E>

Source

pub fn new<B>(body: B) -> BoxBody<D, E>
where B: Body<Data = D, Error = E> + Send + Sync + 'static, D: Buf,

Create a new BoxBody.

Trait Implementations

Source§

impl<D, E> Body for BoxBody<D, E>
where D: Buf,

Source§

type Data = D

Values yielded by the Body.
Source§

type Error = E

The error type this Body might generate.
Source§

fn poll_frame( self: Pin<&mut BoxBody<D, E>>, cx: &mut Context<'_>, ) -> Poll<Option<Result<Frame<<BoxBody<D, E> as Body>::Data>, <BoxBody<D, E> as Body>::Error>>>

Attempt to pull out the next data buffer of this stream.
Source§

fn is_end_stream(&self) -> bool

Returns true when the end of stream has been reached. Read more
Source§

fn size_hint(&self) -> SizeHint

Returns the bounds on the remaining length of the stream. Read more
Source§

impl<D, E> Debug for BoxBody<D, E>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl<D, E> Default for BoxBody<D, E>
where D: Buf + 'static,

Source§

fn default() -> BoxBody<D, E>

Returns the “default value” for a type. Read more