#[repr(C, align(64))]pub struct SequencerWakeSection<const N: usize> {
pub producer_wake: WakeCell,
pub consumer_wake: [WakeCell; N],
}Expand description
Optional appended wake section for a sequencer region.
Fields§
§producer_wake: WakeCellWake cell for the producer cursor.
consumer_wake: [WakeCell; N]Per-consumer wake cells.
Auto Trait Implementations§
impl<const N: usize> !Freeze for SequencerWakeSection<N>
impl<const N: usize> !RefUnwindSafe for SequencerWakeSection<N>
impl<const N: usize> Send for SequencerWakeSection<N>
impl<const N: usize> Sync for SequencerWakeSection<N>
impl<const N: usize> Unpin for SequencerWakeSection<N>
impl<const N: usize> UnwindSafe for SequencerWakeSection<N>
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