Type Alias mas_http::EmptyBody

source ·
pub type EmptyBody = Empty<Bytes>;

Aliased Type§

struct EmptyBody { /* private fields */ }

Implementations

source§

impl<D> Empty<D>

source

pub fn new() -> Empty<D>

Create a new Empty.

Trait Implementations

source§

impl<D> Body for Empty<D>
where D: Buf,

§

type Data = D

Values yielded by the Body.
§

type Error = Infallible

The error type this Body might generate.
source§

fn poll_frame( self: Pin<&mut Empty<D>>, _cx: &mut Context<'_>, ) -> Poll<Option<Result<Frame<<Empty<D> as Body>::Data>, <Empty<D> 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> Clone for Empty<D>

source§

fn clone(&self) -> Empty<D>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<D> Debug for Empty<D>

source§

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

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

impl<D> Default for Empty<D>

source§

fn default() -> Empty<D>

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

impl<D> Copy for Empty<D>