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

pub struct Part { /* fields omitted */ }

A field in a multipart form.

Implementations

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 reader<T: Read + Send + 'static>(value: T) -> Part[src]

Adds a generic reader.

Does not set filename or mime.

pub fn reader_with_length<T: Read + Send + 'static>(
    value: T,
    length: u64
) -> Part
[src]

Adds a generic reader with known length.

Does not set filename or mime.

pub fn file<T: AsRef<Path>>(path: T) -> Result<Part>[src]

Makes a file parameter.

Errors

Errors when the file cannot be opened.

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

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>,