pub trait LockLazyQueryable<T, L>where
L: LockValue<T>,{
// Required method
fn lock_lazy_query(
&self,
) -> LockLazyQuery<'_, T, L, impl Iterator<Item = &L>>;
}Expand description
Extension trait for creating lazy lock queries.
Required Methods§
Sourcefn lock_lazy_query(&self) -> LockLazyQuery<'_, T, L, impl Iterator<Item = &L>>
fn lock_lazy_query(&self) -> LockLazyQuery<'_, T, L, impl Iterator<Item = &L>>
Create a lazy lock query.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.