pub trait NOCCollectionWithLock<T> where
    T: Default + ?Sized + Send + 'static, 
{ fn read(&self) -> Box<dyn Deref<Target = T>>; fn write(&self) -> Box<dyn DerefMut<Target = T>>; }

Required Methods

Implementors