Type Alias RwReadGuard

1.0.0 · Source
pub type RwReadGuard<'a, T: ?Sized> = RwLockReadGuard<'a, RwCount, T>;
Available on non-crate feature use_std only.
Expand description

RAII structure used to release the shared read access of a lock when dropped.

Aliased Type§

struct RwReadGuard<'a, T: ?Sized> { /* private fields */ }