pub fn from_bytes<'de, T>(input: &'de [u8]) -> Result<T, Error>where
    T: Deserialize<'de>,
Expand description

Deserializes a application/x-www-form-urlencoded value from a &[u8].

let meal = vec![
    ("bread".to_owned(), "baguette".to_owned()),
    ("cheese".to_owned(), "comté".to_owned()),
    ("meat".to_owned(), "ham".to_owned()),
    ("fat".to_owned(), "butter".to_owned()),
];

assert_eq!(
    serde_urlencoded::from_bytes::<Vec<(String, String)>>(
        b"bread=baguette&cheese=comt%C3%A9&meat=ham&fat=butter"),
    Ok(meal));