[][src]Struct reqwest::async::multipart::Part

pub struct Part { /* fields omitted */ }

A field in a multipart form.

Methods

impl Part
[src]

pub fn text<T>(value: T) -> Part where
    T: Into<Cow<'static, str>>, 
[src]

Makes a text parameter.

pub fn bytes<T>(value: T) -> Part where
    T: Into<Cow<'static, [u8]>>, 
[src]

Makes a new parameter from arbitrary bytes.

pub fn stream<T>(value: T) -> Part where
    T: Stream + Send + 'static,
    T::Error: Error + Send + Sync,
    Chunk: From<T::Item>, 
[src]

Makes a new parameter from an arbitrary stream.

pub fn mime_str(self, mime: &str) -> Result<Part>
[src]

Tries to set the mime of this part.

pub fn file_name<T>(self, filename: T) -> Part where
    T: Into<Cow<'static, str>>, 
[src]

Sets the filename, builder style.

Trait Implementations

impl Debug for Part
[src]

Auto Trait Implementations

impl Send for Part

impl !Sync for Part

Blanket Implementations

impl<T> From for T
[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T