pub struct LocalIrqState(/* private fields */);Expand description
Runtime-defined raw local-IRQ state saved by a synchronization guard.
Unlike IrqGuardToken, this value does not own a scheduler publication
scope. It only transports the architecture interrupt state back to the
runtime that produced it.
Implementations§
Trait Implementations§
Source§impl Clone for LocalIrqState
impl Clone for LocalIrqState
Source§fn clone(&self) -> LocalIrqState
fn clone(&self) -> LocalIrqState
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for LocalIrqState
Source§impl Debug for LocalIrqState
impl Debug for LocalIrqState
impl Eq for LocalIrqState
Source§impl PartialEq for LocalIrqState
impl PartialEq for LocalIrqState
impl StructuralPartialEq for LocalIrqState
Auto Trait Implementations§
impl Freeze for LocalIrqState
impl RefUnwindSafe for LocalIrqState
impl Send for LocalIrqState
impl Sync for LocalIrqState
impl Unpin for LocalIrqState
impl UnsafeUnpin for LocalIrqState
impl UnwindSafe for LocalIrqState
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more