pub struct OwnedIntMap<T> { /* private fields */ }Expand description
An owned version of IntMap.
Implementations§
Trait Implementations§
Source§impl<T> Borrow<IntMap<T>> for OwnedIntMap<T>
impl<T> Borrow<IntMap<T>> for OwnedIntMap<T>
Source§impl<T: Debug> Debug for OwnedIntMap<T>
impl<T: Debug> Debug for OwnedIntMap<T>
Source§impl<T> Deref for OwnedIntMap<T>
impl<T> Deref for OwnedIntMap<T>
Source§impl<T> Extend<(u8, T)> for OwnedIntMap<T>
impl<T> Extend<(u8, T)> for OwnedIntMap<T>
Source§fn extend<I: IntoIterator<Item = (u8, T)>>(&mut self, iter: I)
fn extend<I: IntoIterator<Item = (u8, T)>>(&mut self, iter: I)
Extends a collection with the contents of an iterator. Read more
Source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
🔬This is a nightly-only experimental API. (
extend_one)Extends a collection with exactly one element.
Source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
🔬This is a nightly-only experimental API. (
extend_one)Reserves capacity in a collection for the given number of additional elements. Read more
Source§impl<T> FromIterator<(u8, T)> for OwnedIntMap<T>
impl<T> FromIterator<(u8, T)> for OwnedIntMap<T>
Auto Trait Implementations§
impl<T> Freeze for OwnedIntMap<T>
impl<T> RefUnwindSafe for OwnedIntMap<T>where
T: RefUnwindSafe,
impl<T> Send for OwnedIntMap<T>where
T: Send,
impl<T> Sync for OwnedIntMap<T>where
T: Sync,
impl<T> Unpin for OwnedIntMap<T>where
T: Unpin,
impl<T> UnwindSafe for OwnedIntMap<T>where
T: UnwindSafe,
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