Struct salvo::http::multipart::FieldHeaders[][src]

pub struct FieldHeaders {
    pub name: String,
    pub filename: Option<String>,
    pub content_type: Option<Mime>,
    pub ext_headers: HeaderMap<HeaderValue>,
}
Expand description

The headers of a Field, including the name, filename, and Content-Type, if provided.

Note: Untrustworthy

These values are provided directly by the client, and as such, should be considered untrustworthy and potentially dangerous. Avoid any unsanitized usage on the filesystem or in a shell or database, or performing unsafe operations with the assumption of a certain file type. Sanitizing/verifying these values is (currently) beyond the scope of this crate.

Fields

name: String
Expand description

The name of the field as provided by the client.

Special Value: _charset_

If the client intended a different character set than UTF-8 for its text values, it may provide the name of the charset as a text field (ASCII-encoded) with the name _charset_. See IETF RFC 7578, Section 4.6 for more.

Alternately, the charset can be provided for an individual field as a charset parameter to its Content-Type header; see the charset() method for a convenient wrapper.

filename: Option<String>
Expand description

The name of the file as it was on the client. If not provided, it may still have been a file field.

content_type: Option<Mime>
Expand description

The Content-Type of this field, as provided by the client. If None, then the field is probably text, but this is not guaranteed.

ext_headers: HeaderMap<HeaderValue>
Expand description

Any additional headers, standard or otherwise, for this field as provided by the client.

The size of this map will be limited internally.

Implementations

impl FieldHeaders[src]

pub fn is_text(&self) -> bool[src]

true if content_type is None or text/* (such as text/plain).

Note: this does not guarantee that the field data is compatible with FieldData::read_text(); supporting more encodings than ASCII/UTF-8 is (currently) beyond the scope of this crate.

pub fn charset(&self) -> Option<Name<'_>>[src]

The character set of this field, if provided.

Trait Implementations

impl Clone for FieldHeaders[src]

pub fn clone(&self) -> FieldHeaders[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for FieldHeaders[src]

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

Formats the value using the given formatter. Read more

impl Default for FieldHeaders[src]

pub fn default() -> FieldHeaders[src]

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

Auto Trait Implementations

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> Instrument for T[src]

fn instrument(self, span: Span) -> Instrumented<Self>[src]

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

fn in_current_span(self) -> Instrumented<Self>[src]

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

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

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

Performs the conversion.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

pub fn vzip(self) -> V