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]
Implementations on Foreign Types
impl<T> HandyRwLock<T> for RwLock<T>[src]
impl<T> HandyRwLock<T> for RwLock<T>[src]