[−][src]Struct reqwest::multipart::Form
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]
T: Into<Cow<'static, str>>,
U: Into<Cow<'static, str>>,
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]
T: Into<Cow<'static, str>>,
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
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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,