pub struct Builder<K, V> { /* private fields */ }Implementations§
Source§impl<K: Key, V> Builder<K, V>
impl<K: Key, V> Builder<K, V>
pub fn insert<IK: IntoIterator<Item = K>>(
&mut self,
key: IK,
value: V,
) -> Option<V>where
IK::IntoIter: ExactSizeIterator,
Trait Implementations§
Auto Trait Implementations§
impl<K, V> Freeze for Builder<K, V>
impl<K, V> RefUnwindSafe for Builder<K, V>where
V: RefUnwindSafe,
K: RefUnwindSafe,
impl<K, V> Send for Builder<K, V>
impl<K, V> Sync for Builder<K, V>
impl<K, V> Unpin for Builder<K, V>
impl<K, V> UnsafeUnpin for Builder<K, V>
impl<K, V> UnwindSafe for Builder<K, V>where
V: RefUnwindSafe,
K: RefUnwindSafe,
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