pub type SpinLockIrqGuard<'a, T> = Guard<'a, T, SpinLockIrqBackend>;Expand description
A Guard acquired from locking a SpinLockIrq using lock().
This is simply a type alias for a Guard returned from locking a SpinLockIrq using
lock(). It will unlock the SpinLockIrq and decrement the local processor’s interrupt
disablement refcount upon being dropped.
Aliased Type§
pub struct SpinLockIrqGuard<'a, T> { /* private fields */ }