struct DropFilteredValues<'a, K, V> {
free: &'a mut Option<NonNull<Node<K, V>>>,
cur_free: Option<NonNull<Node<K, V>>>,
}
Fields§
§free: &'a mut Option<NonNull<Node<K, V>>>
§cur_free: Option<NonNull<Node<K, V>>>
Implementations§
Source§impl<K, V> DropFilteredValues<'_, K, V>
impl<K, V> DropFilteredValues<'_, K, V>
fn drop_later(&mut self, node: NonNull<Node<K, V>>)
Trait Implementations§
Auto Trait Implementations§
impl<'a, K, V> Freeze for DropFilteredValues<'a, K, V>
impl<'a, K, V> RefUnwindSafe for DropFilteredValues<'a, K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<'a, K, V> !Send for DropFilteredValues<'a, K, V>
impl<'a, K, V> !Sync for DropFilteredValues<'a, K, V>
impl<'a, K, V> Unpin for DropFilteredValues<'a, K, V>
impl<'a, K, V> !UnwindSafe for DropFilteredValues<'a, K, V>
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