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;
}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;
}