[go: up one dir, main page]

logo
pub unsafe trait RwLockIface {
    fn try_lock_read(&mut self) -> bool;
    fn try_release_read(&mut self) -> bool;
    fn try_lock_write(&mut self) -> bool;
    fn try_release_write(&mut self) -> bool;
}

Required methods

Implementors