pub struct QueryMap(_);
Expand description
A read-only view into a map of data which may contain multiple values
Internally data is always represented as many values
Implementations
sourceimpl QueryMap
impl QueryMap
sourcepub fn iter(&self) -> QueryMapIter<'_>ⓘNotable traits for QueryMapIter<'a>impl<'a> Iterator for QueryMapIter<'a> type Item = (&'a str, &'a str);
pub fn iter(&self) -> QueryMapIter<'_>ⓘNotable traits for QueryMapIter<'a>impl<'a> Iterator for QueryMapIter<'a> type Item = (&'a str, &'a str);
Return an iterator for this map
Trait Implementations
impl StructuralPartialEq for QueryMap
Auto Trait Implementations
impl RefUnwindSafe for QueryMap
impl Send for QueryMap
impl Sync for QueryMap
impl Unpin for QueryMap
impl UnwindSafe for QueryMap
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more