pub struct IrqGuard<'cell, T: ?Sized> {
cell: &'cell IrqCell<T>,
_phantom_not_send: PhantomData<*mut u8>,
}
🔬This is a nightly-only experimental API. (
kernel_irq_cell
)Available on non-crate feature
use_std
only.Fields§
§cell: &'cell IrqCell<T>
🔬This is a nightly-only experimental API. (
§kernel_irq_cell
)_phantom_not_send: PhantomData<*mut u8>
🔬This is a nightly-only experimental API. (
kernel_irq_cell
)Implementations§
Trait Implementations§
impl<'b, T: ?Sized + Unsize<U>, U: ?Sized> CoerceUnsized<IrqGuard<'b, U>> for IrqGuard<'b, T>
impl<'a, T: ?Sized + Unsize<U>, U: ?Sized> DispatchFromDyn<IrqGuard<'a, U>> for IrqGuard<'a, T>
Auto Trait Implementations§
impl<'cell, T> Freeze for IrqGuard<'cell, T>where
T: ?Sized,
impl<'cell, T> !RefUnwindSafe for IrqGuard<'cell, T>
impl<'cell, T> !Send for IrqGuard<'cell, T>
impl<'cell, T> !Sync for IrqGuard<'cell, T>
impl<'cell, T> Unpin for IrqGuard<'cell, T>where
T: ?Sized,
impl<'cell, T> !UnwindSafe for IrqGuard<'cell, T>
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