Type Alias ArcSpinLockGuard

Source
pub type ArcSpinLockGuard<T, G> = SpinLockGuard_<T, Arc<SpinLock<T, G>>, G>;
Expand description

A guard that provides exclusive access to the data protected by a Arc<SpinLock>.

Aliased Typeยง

struct ArcSpinLockGuard<T, G> { /* private fields */ }