Struct IterHashMut
pub struct IterHashMut<'a, T> { /* private fields */ }
A mutable iterator over the entries of a HashTable that could match a given hash.
The iterator element type is &'a mut T.
This struct is created by the iter_hash_mut method on HashTable. See its
documentation for more.
Trait Implementations
impl<'a, T> Iterator for IterHashMut<'a, T>
type Item = &'a mut T;fn next(&mut self) -> Option<Self::Item>fn fold<B, F>(self, init: B, f: F) -> B where Self: Sized, F: FnMut(B, Self::Item) -> B,
impl<T> Debug for IterHashMut<'_, T>
where
T: Debug,
fn fmt(&self, f: &mut Formatter<'_>) -> Result
impl<T> Default for IterHashMut<'_, T>
fn default() -> Self
impl<T> FusedIterator for IterHashMut<'_, T>
Auto Trait Implementations
impl<'a, T> !Send for IterHashMut<'a, T>
impl<'a, T> !Sync for IterHashMut<'a, T>
impl<'a, T> !UnwindSafe for IterHashMut<'a, T>
impl<'a, T> Freeze for IterHashMut<'a, T>
where
RawIterHash<T>: Freeze,
PhantomData<&'a mut T>: Freeze,
impl<'a, T> RefUnwindSafe for IterHashMut<'a, T>
where
RawIterHash<T>: RefUnwindSafe,
PhantomData<&'a mut T>: RefUnwindSafe,
impl<'a, T> Unpin for IterHashMut<'a, T>
where
RawIterHash<T>: Unpin,
PhantomData<&'a mut T>: Unpin,
impl<'a, T> UnsafeUnpin for IterHashMut<'a, T>
where
RawIterHash<T>: UnsafeUnpin,
PhantomData<&'a mut T>: UnsafeUnpin,
Blanket Implementations
impl<I> IntoIterator for IterHashMut<'a, T>
where
I: Iterator,
type Item = <I as Iterator>::Item;type IntoIter = I;fn into_iter(self) -> I
impl<T> Any for IterHashMut<'a, T>
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for IterHashMut<'a, T>
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for IterHashMut<'a, T>
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> From<T> for IterHashMut<'a, T>
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into<U> for IterHashMut<'a, T>
where
U: From<T>,
fn into(self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom<U> for IterHashMut<'a, T>
where
U: Into<T>,
type Error = never;fn try_from(value: U) -> Result<T, never>
impl<T, U> TryInto<U> for IterHashMut<'a, T>
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>