pub struct KeyValues<'a>(/* private fields */);
Expand description
A collection of key-value pairs.
Implementations§
Trait Implementations§
Source§impl<'a> From<&'a [(KeyOwned, OwnedValueBag)]> for KeyValues<'a>
impl<'a> From<&'a [(KeyOwned, OwnedValueBag)]> for KeyValues<'a>
Source§fn from(kvs: &'a [(KeyOwned, ValueOwned)]) -> Self
fn from(kvs: &'a [(KeyOwned, ValueOwned)]) -> Self
Converts to this type from the input type.
Source§impl<'a> IntoIterator for KeyValues<'a>
impl<'a> IntoIterator for KeyValues<'a>
Auto Trait Implementations§
impl<'a> Freeze for KeyValues<'a>
impl<'a> !RefUnwindSafe for KeyValues<'a>
impl<'a> !Send for KeyValues<'a>
impl<'a> !Sync for KeyValues<'a>
impl<'a> Unpin for KeyValues<'a>
impl<'a> !UnwindSafe for KeyValues<'a>
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