Struct kernel::irq::ChainedGuard
source · [−]pub struct ChainedGuard<'a> { /* private fields */ }
Expand description
A guard to call chained_irq_exit
after chained_irq_enter
was called.
It is also used as evidence that a previous chained_irq_enter
was called. So there are no
public constructors and it is only created after indeed calling chained_irq_enter
.
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for ChainedGuard<'a>
impl<'a> !Send for ChainedGuard<'a>
impl<'a> !Sync for ChainedGuard<'a>
impl<'a> Unpin for ChainedGuard<'a>
impl<'a> UnwindSafe for ChainedGuard<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more