[−][src]Struct reqwest::async::multipart::Part
A field in a multipart form.
Methods
impl Part
[src]
pub fn text<T>(value: T) -> Part where
T: Into<Cow<'static, str>>,
[src]
T: Into<Cow<'static, str>>,
Makes a text parameter.
pub fn bytes<T>(value: T) -> Part where
T: Into<Cow<'static, [u8]>>,
[src]
T: Into<Cow<'static, [u8]>>,
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]
T: Stream + Send + 'static,
T::Error: Error + Send + Sync,
Chunk: From<T::Item>,
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]
T: Into<Cow<'static, str>>,
Sets the filename, builder style.
Trait Implementations
Auto Trait Implementations
impl Send for Part
impl Unpin for Part
impl !Sync for Part
impl !UnwindSafe for Part
impl !RefUnwindSafe for Part
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
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>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,