pub struct QueryDictItem { /* private fields */ }
Expand description
QueryDict item.
Implementations§
Source§impl QueryDictItem
impl QueryDictItem
Sourcepub fn key(&self) -> &QueryDictKey
pub fn key(&self) -> &QueryDictKey
Get the item key.
Sourcepub fn value(&self) -> Option<&QueryDictValue>
pub fn value(&self) -> Option<&QueryDictValue>
Get the item value.
Trait Implementations§
Source§impl Clone for QueryDictItem
impl Clone for QueryDictItem
Source§fn clone(&self) -> QueryDictItem
fn clone(&self) -> QueryDictItem
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for QueryDictItem
impl Debug for QueryDictItem
Source§impl Display for QueryDictItem
impl Display for QueryDictItem
Source§impl<K> From<(K,)> for QueryDictItemwhere
K: Into<QueryDictKey>,
impl<K> From<(K,)> for QueryDictItemwhere
K: Into<QueryDictKey>,
Source§impl<K, V> From<(K, V)> for QueryDictItem
impl<K, V> From<(K, V)> for QueryDictItem
Auto Trait Implementations§
impl Freeze for QueryDictItem
impl RefUnwindSafe for QueryDictItem
impl Send for QueryDictItem
impl Sync for QueryDictItem
impl Unpin for QueryDictItem
impl UnwindSafe for QueryDictItem
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more