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

pub struct Form { /* fields omitted */ }
Expand description

An async multipart/form-data request.

Implementations

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]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Default for Form[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

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]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.