pub trait RwLock {
type ReadGuard: for<'a> PlugLifetime<'a>;
type WriteGuard: for<'a> PlugLifetime<'a>;
// Required methods
fn read(&self) -> PluggedGuard<'_, Self::ReadGuard>;
fn write(&self) -> PluggedGuard<'_, Self::WriteGuard>;
}