Type Alias SpinLockGuard

Source
pub type SpinLockGuard<'a, T> = Guard<'a, T, SpinLockBackend>;
Expand description

A Guard acquired from locking a SpinLock.

This is simply a type alias for a Guard returned from locking a SpinLock. It will unlock the SpinLock upon being dropped.

Aliased Typeยง

struct SpinLockGuard<'a, T> { /* private fields */ }