Trait simple_db_rust::util::HandyRwLock[][src]

pub trait HandyRwLock<T> {
    fn wl(&self) -> RwLockWriteGuard<'_, T>;
fn rl(&self) -> RwLockReadGuard<'_, T>; }

Required methods

fn wl(&self) -> RwLockWriteGuard<'_, T>[src]

fn rl(&self) -> RwLockReadGuard<'_, T>[src]

Loading content...

Implementations on Foreign Types

impl<T> HandyRwLock<T> for RwLock<T>[src]

Loading content...

Implementors

Loading content...