Skip to main content

Part

Struct Part 

Source
pub struct Part { /* private fields */ }
Expand description

A single field for Form

Implementations§

Source§

impl Part

Source

pub fn text(name: impl Into<String>, value: impl Into<String>) -> Self

plain-text field. field Content-Type is text/plain; charset=utf-8.

Source

pub fn binary(name: impl Into<String>, body: impl Into<Bytes>) -> Self

fixed binary field. field Content-Type is application/octet-stream.

Source

pub fn stream<S>(name: impl Into<String>, stream: S) -> Self
where S: Stream<Item = Result<Bytes>> + Send + 'static,

streaming binary field. field Content-Type is application/octet-stream.

Stream trait is utilized for generic async streaming interface

Source

pub fn file_name(self, filename: impl Into<String>) -> Self

Attach a filename (sets the filename parameter in Content-Disposition).

Source

pub fn content_type(self, ct: impl Into<Cow<'static, str>>) -> Self

Override the Content-Type for this part.

Auto Trait Implementations§

§

impl Freeze for Part

§

impl !RefUnwindSafe for Part

§

impl Send for Part

§

impl !Sync for Part

§

impl Unpin for Part

§

impl UnsafeUnpin for Part

§

impl !UnwindSafe for Part

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.