[][src]Struct rocket::data::DataStream

pub struct DataStream(_);

Raw data stream of a request body.

This stream can only be obtained by calling Data::open(). The stream contains all of the data in the body of the request. It exposes no methods directly. Instead, it must be used as an opaque Read structure.

Trait Implementations

impl Drop for DataStream[src]

impl Read for DataStream[src]

Auto Trait Implementations

impl RefUnwindSafe for DataStream

impl Send for DataStream

impl Sync for DataStream

impl Unpin for DataStream

impl UnwindSafe for DataStream

Blanket Implementations

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

impl<T, I> AsResult<T, I> for T where
    I: Input
[src]

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

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

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

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

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

impl<R> ReadBytesExt for R where
    R: Read + ?Sized
[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.

impl<T> Typeable for T where
    T: Any
[src]