Trait NOCCollectionWithLock

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

Required Methods§

Source

fn read(&self) -> Box<dyn Deref<Target = T> + '_>

Source

fn write(&self) -> Box<dyn DerefMut<Target = T> + '_>

Implementors§