pub struct SpinMutexIRQGuard<'a, T: ?Sized + 'a> {
spin_guard: Option<MutexGuard<'a, T>>,
irq_was_enabled: bool,
}Fields§
§spin_guard: Option<MutexGuard<'a, T>>§irq_was_enabled: boolTrait Implementations§
Source§impl<T: ?Sized> Deref for SpinMutexIRQGuard<'_, T>
impl<T: ?Sized> Deref for SpinMutexIRQGuard<'_, T>
Source§impl<T: ?Sized> DerefMut for SpinMutexIRQGuard<'_, T>
impl<T: ?Sized> DerefMut for SpinMutexIRQGuard<'_, T>
Source§impl<T: ?Sized> Drop for SpinMutexIRQGuard<'_, T>
impl<T: ?Sized> Drop for SpinMutexIRQGuard<'_, T>
Auto Trait Implementations§
impl<'a, T> Freeze for SpinMutexIRQGuard<'a, T>where
Option<MutexGuard<'a, T>>: Freeze,
T: ?Sized,
impl<'a, T> RefUnwindSafe for SpinMutexIRQGuard<'a, T>where
Option<MutexGuard<'a, T>>: RefUnwindSafe,
T: ?Sized,
impl<'a, T> Send for SpinMutexIRQGuard<'a, T>where
Option<MutexGuard<'a, T>>: Send,
T: ?Sized,
impl<'a, T> Sync for SpinMutexIRQGuard<'a, T>where
Option<MutexGuard<'a, T>>: Sync,
T: ?Sized,
impl<'a, T> Unpin for SpinMutexIRQGuard<'a, T>where
Option<MutexGuard<'a, T>>: Unpin,
T: ?Sized,
impl<'a, T> UnsafeUnpin for SpinMutexIRQGuard<'a, T>where
Option<MutexGuard<'a, T>>: UnsafeUnpin,
T: ?Sized,
impl<'a, T> UnwindSafe for SpinMutexIRQGuard<'a, T>where
Option<MutexGuard<'a, T>>: UnwindSafe,
T: ?Sized,
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more