[][src]Enum form_data::Value

pub enum Value {
    Map(HashMap<String, Value>),
    Array(Vec<Value>),
    File(StringPathBuf),
    Text(String),
    Int(i64),
    Float(f64),
    Bytes(Bytes),
}

The result of a succesfull parse through a given multipart stream.

This type represents all possible variations in structure of a Multipart Form.

Example usage

match value {
    Value::Map(mut hashmap) => {
        match hashmap.remove("field-name") {
            Some(value) => match value {
                Value::Int(integer) => println!("{}", integer),
                _ => (),
            }
            None => (),
        }
    }
    _ => (),
}

Variants

Map(HashMap<String, Value>)Array(Vec<Value>)File(StringPathBuf)Text(String)Int(i64)Float(f64)Bytes(Bytes)

Methods

impl Value
[src]

pub fn map(self) -> Option<HashMap<String, Value>>
[src]

pub fn array(self) -> Option<Vec<Value>>
[src]

pub fn file(self) -> Option<(String, PathBuf)>
[src]

pub fn text(self) -> Option<String>
[src]

pub fn int(self) -> Option<i64>
[src]

pub fn float(self) -> Option<f64>
[src]

pub fn bytes(self) -> Option<Bytes>
[src]

Trait Implementations

impl PartialEq<Value> for Value
[src]

impl Clone for Value
[src]

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

Performs copy-assignment from source. Read more

impl Debug for Value
[src]

Auto Trait Implementations

impl Send for Value

impl Sync for Value

Blanket Implementations

impl<T> From for T
[src]

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

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

type Owned = T

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

type Error = !

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

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

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

The type returned in the event of a conversion error.

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

impl<T> Erased for T