#[repr(C, align(64))]pub struct FanoutWakeSection<const N: usize> {
pub producer_wake: WakeCell,
pub consumer_wake: [WakeCell; N],
}Expand description
Optional appended wake section for a fanout 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 FanoutWakeSection<N>
impl<const N: usize> !RefUnwindSafe for FanoutWakeSection<N>
impl<const N: usize> Send for FanoutWakeSection<N>
impl<const N: usize> Sync for FanoutWakeSection<N>
impl<const N: usize> Unpin for FanoutWakeSection<N>
impl<const N: usize> UnwindSafe for FanoutWakeSection<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