[][src]Struct salvo::http::multipart::Field

pub struct Field<'a, S> where
    S: 'a + TryStream,
    <S as TryStream>::Error: Into<ReadError>, 
{ pub headers: FieldHeaders, pub data: FieldData<'a, S>, // some fields omitted }

A single field in a multipart stream.

The data of the field is provided as a Stream impl in the data field.

Fields

headers: FieldHeaders

The headers of this field, including the name, filename, and Content-Type, if provided.

data: FieldData<'a, S>

The data of this field in the request, represented as a stream of chunks.

Trait Implementations

impl<'_, S> Debug for Field<'_, S> where
    S: TryStream,
    <S as TryStream>::Error: Into<ReadError>, 
[src]

Auto Trait Implementations

impl<'a, S> RefUnwindSafe for Field<'a, S> where
    S: RefUnwindSafe,
    <S as TryStream>::Ok: RefUnwindSafe
[src]

impl<'a, S> Send for Field<'a, S> where
    S: Send,
    <S as TryStream>::Ok: Send
[src]

impl<'a, S> Sync for Field<'a, S> where
    S: Sync,
    <S as TryStream>::Ok: Sync
[src]

impl<'a, S> Unpin for Field<'a, S>[src]

impl<'a, S> !UnwindSafe for Field<'a, S>[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[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> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[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<V, T> VZip<V> for T where
    V: MultiLane<T>,