[−][src]Struct multipart::server::FieldHeaders
The headers that (may) appear before a multipart/form-data
field.
Warning: Values are Client-Provided
Everything in this struct are values from the client and should be considered untrustworthy. This crate makes no effort to validate or sanitize any client inputs.
Fields
name: ArcStr
The field's name from the form.
filename: Option<String>
The filename of this entry, if supplied. This is not guaranteed to match the original file or even to be a valid filename for the current platform.
content_type: Option<Mime>
The MIME type (Content-Type
value) of this file, if supplied by the client.
If this is not supplied, the content-type of the field should default to text/plain
as
per IETF RFC 7578, section 4.4, but this
should not be implicitly trusted. This crate makes no attempt to identify or validate
the content-type of the actual field data.
Trait Implementations
impl Clone for FieldHeaders
[src]
fn clone(&self) -> FieldHeaders
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for FieldHeaders
[src]
Auto Trait Implementations
impl Unpin for FieldHeaders
impl Sync for FieldHeaders
impl Send for FieldHeaders
impl UnwindSafe for FieldHeaders
impl RefUnwindSafe for FieldHeaders
Blanket Implementations
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &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>,
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> 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> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,