[][src]Struct izanami_http::body::Body

pub struct Body(_);

An implementation of HttpBody for general purpose.

Methods

impl Body[src]

pub fn empty() -> Self[src]

Creates an empty Body.

pub fn wrap_stream<S>(stream: S) -> Self where
    S: Stream<Item = Data> + Send + 'static,
    S::Error: Into<Box<dyn Error + Send + Sync + 'static>>, 
[src]

Wraps a Stream into a Body.

pub fn wrap_buf_stream<S>(buf_stream: S) -> Self where
    S: BufStream + Send + 'static,
    S::Item: Send + 'static,
    S::Error: Into<Box<dyn Error + Send + Sync + 'static>>, 
[src]

Wraps a BufStream into a Body.

Trait Implementations

impl HttpBody for Body[src]

type Data = Data

The type of bytes generated by this body.

type Error = Error

The error type that will be returned from this body.

impl<I> HttpUpgrade<I> for Body[src]

type Upgraded = Empty<(), Self::Error>

The type of asynchronous process that drives upgraded protocol.

type Error = Error

The error type that will be returned from the upgraded stream.

impl Default for Body[src]

impl From<()> for Body[src]

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

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

impl From<String> for Body[src]

impl From<Vec<u8>> for Body[src]

impl From<Bytes> for Body[src]

impl Debug for Body[src]

Auto Trait Implementations

impl Send for Body

impl !Sync for Body

Blanket Implementations

impl<T> HttpBody for T where
    T: BufStream
[src]

type Data = <T as BufStream>::Item

The type of bytes generated by this body.

type Error = <T as BufStream>::Error

The error type that will be returned from this body.

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

Returns the length of total bytes contained in this body.

impl<T> HttpBodyExt for T where
    T: HttpBody
[src]

fn into_buf_stream(self) -> IntoBufStream<Self> where
    Self: Sized
[src]

Lift this body into a BufStream.

impl<Bd, I> HttpUpgrade for Bd where
    Bd: BufStream
[src]

type Upgraded = Empty<(), Error>

The type of asynchronous process that drives upgraded protocol.

type Error = Error

The error type that will be returned from the upgraded stream.

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 = Infallible

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

The type returned in the event of a conversion error.