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

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

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

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>

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>

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>

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]

impl Debug for FieldHeaders[src]

impl Default for FieldHeaders[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized

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

type Owned = T

The resulting type after obtaining ownership.

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.

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.

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