Type Alias QueryMap

Source
pub type QueryMap = BTreeMap<ByteString, BTreeSet<ByteString>>;
Expand description

URI query as map.

Aliased Type§

pub struct QueryMap { /* private fields */ }

Trait Implementations§

Source§

impl QueryMapUtilities for QueryMap

Source§

fn get_single(&self, key: &str) -> Option<&ByteString>

Gets a value for a key only if there is a single value.
Source§

fn get_single_as_ref(&self, key: &str) -> Option<&str>

Gets a value for a key only if there is a single value.