pub trait LockQueryExt<T, L>where
    L: LockValue<T>,{
    // Required method
    fn lock_iter(
        &self,
    ) -> Box<dyn Iterator<Item = LockedValueRef<'_, T, L>> + '_>;
}Expand description
Extension trait for querying collections of locks.
Provides convenient methods for querying HashMaps and Vecs containing locked values without data copying.