[][src]Struct reqwest::multipart::Form

pub struct Form { /* fields omitted */ }

An async multipart/form-data request.

Methods

impl Form[src]

pub fn new() -> Form[src]

Creates a new async Form without any content.

pub fn boundary(&self) -> &str[src]

Get the boundary that this form will use.

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

Add a data field with supplied name and value.

Examples

let form = reqwest::multipart::Form::new()
    .text("username", "seanmonstar")
    .text("password", "secret");

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

Adds a customized Part.

pub fn percent_encode_path_segment(self) -> Form[src]

Configure this Form to percent-encode using the path-segment rules.

pub fn percent_encode_attr_chars(self) -> Form[src]

Configure this Form to percent-encode using the attr-char rules.

pub fn percent_encode_noop(self) -> Form[src]

Configure this Form to skip percent-encoding

Trait Implementations

impl Debug for Form[src]

impl Default for Form[src]

Auto Trait Implementations

impl !RefUnwindSafe for Form

impl Send for Form

impl Sync for Form

impl Unpin for Form

impl !UnwindSafe for Form

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