pub trait QueryStringExt<'a> {
// Required method
fn get_as<T, K>(&self, key: &K) -> Result<Option<T>, Error>
where T: FromStr,
K: Ord + ?Sized,
Error: From<T::Err>,
Cow<'a, [u8]>: Borrow<K> + Ord;
}
Expand description
Some query string extensions
Required Methods§
Object Safety§
This trait is not object safe.