pub trait LockJoinableCollection<T, L>where
L: LockValue<T>,{
// Required method
fn get_locks(&self) -> Vec<&L>;
}Expand description
Helper trait for collections that can participate in joins.
pub trait LockJoinableCollection<T, L>where
L: LockValue<T>,{
// Required method
fn get_locks(&self) -> Vec<&L>;
}Helper trait for collections that can participate in joins.