pub trait PathAndQueryUtilities {
// Required methods
fn decoded_path(&self) -> Option<Cow<'_, str>>;
fn decoded_query(&self) -> Option<Vec<(Cow<'_, str>, Cow<'_, str>)>>;
// Provided method
fn decoded_query_map(&self) -> Option<BTreeMap<ByteString, ByteString>> { ... }
}Expand description
PathAndQuery utilities.
Required Methods§
Sourcefn decoded_path(&self) -> Option<Cow<'_, str>>
fn decoded_path(&self) -> Option<Cow<'_, str>>
Decoded path.
Provided Methods§
Sourcefn decoded_query_map(&self) -> Option<BTreeMap<ByteString, ByteString>>
fn decoded_query_map(&self) -> Option<BTreeMap<ByteString, ByteString>>
Decoded path.