Type Alias hermit_sync::RawInterruptSpinMutex
source · pub type RawInterruptSpinMutex = RawInterruptMutex<RawSpinMutex>;Expand description
An interrupt-safe RawSpinMutex.
Aliased Type§
struct RawInterruptSpinMutex { /* private fields */ }Trait Implementations§
source§impl<I: RawMutex> RawMutex for RawInterruptMutex<I>
impl<I: RawMutex> RawMutex for RawInterruptMutex<I>
§type GuardMarker = GuardNoSend
type GuardMarker = GuardNoSend
Marker type which determines whether a lock guard should be
Send. Use
one of the GuardSend or GuardNoSend helper types here.