pub struct StaticManifoldLane<M: RawMutex + 'static, const FRAME: usize, const INBOUND_DEPTH: usize, const OUTBOUND_DEPTH: usize = INBOUND_DEPTH> { /* private fields */ }Implementations§
Source§impl<M: RawMutex + Sync + 'static, const FRAME: usize, const INBOUND_DEPTH: usize, const OUTBOUND_DEPTH: usize> StaticManifoldLane<M, FRAME, INBOUND_DEPTH, OUTBOUND_DEPTH>
impl<M: RawMutex + Sync + 'static, const FRAME: usize, const INBOUND_DEPTH: usize, const OUTBOUND_DEPTH: usize> StaticManifoldLane<M, FRAME, INBOUND_DEPTH, OUTBOUND_DEPTH>
pub const fn new() -> Self
pub fn ingress_pressure_events(&self) -> u32
pub fn egress_pressure_events(&self) -> u32
Trait Implementations§
Auto Trait Implementations§
impl<M, const FRAME: usize, const INBOUND_DEPTH: usize, const OUTBOUND_DEPTH: usize = INBOUND_DEPTH> !Freeze for StaticManifoldLane<M, FRAME, INBOUND_DEPTH, OUTBOUND_DEPTH>
impl<M, const FRAME: usize, const INBOUND_DEPTH: usize, const OUTBOUND_DEPTH: usize = INBOUND_DEPTH> !RefUnwindSafe for StaticManifoldLane<M, FRAME, INBOUND_DEPTH, OUTBOUND_DEPTH>
impl<M, const FRAME: usize, const INBOUND_DEPTH: usize, const OUTBOUND_DEPTH: usize = INBOUND_DEPTH> !UnwindSafe for StaticManifoldLane<M, FRAME, INBOUND_DEPTH, OUTBOUND_DEPTH>
impl<M, const FRAME: usize, const INBOUND_DEPTH: usize, const OUTBOUND_DEPTH: usize> Send for StaticManifoldLane<M, FRAME, INBOUND_DEPTH, OUTBOUND_DEPTH>where
ConstStaticCell<[FrameSlot<FRAME>; INBOUND_DEPTH]>: Send,
StaticCell<Channel<'static, M, FrameSlot<FRAME>>>: Send,
StaticCell<EmbassyGrantConsumer<'static, M, FRAME>>: Send,
ConstStaticCell<[FrameSlot<FRAME>; OUTBOUND_DEPTH]>: Send,
StaticCell<EmbassyGrantProducer<'static, M, FRAME>>: Send,
impl<M, const FRAME: usize, const INBOUND_DEPTH: usize, const OUTBOUND_DEPTH: usize> Sync for StaticManifoldLane<M, FRAME, INBOUND_DEPTH, OUTBOUND_DEPTH>where
ConstStaticCell<[FrameSlot<FRAME>; INBOUND_DEPTH]>: Sync,
StaticCell<Channel<'static, M, FrameSlot<FRAME>>>: Sync,
StaticCell<EmbassyGrantConsumer<'static, M, FRAME>>: Sync,
ConstStaticCell<[FrameSlot<FRAME>; OUTBOUND_DEPTH]>: Sync,
StaticCell<EmbassyGrantProducer<'static, M, FRAME>>: Sync,
impl<M, const FRAME: usize, const INBOUND_DEPTH: usize, const OUTBOUND_DEPTH: usize> Unpin for StaticManifoldLane<M, FRAME, INBOUND_DEPTH, OUTBOUND_DEPTH>where
ConstStaticCell<[FrameSlot<FRAME>; INBOUND_DEPTH]>: Unpin,
StaticCell<Channel<'static, M, FrameSlot<FRAME>>>: Unpin,
StaticCell<EmbassyGrantConsumer<'static, M, FRAME>>: Unpin,
ConstStaticCell<[FrameSlot<FRAME>; OUTBOUND_DEPTH]>: Unpin,
StaticCell<EmbassyGrantProducer<'static, M, FRAME>>: Unpin,
impl<M, const FRAME: usize, const INBOUND_DEPTH: usize, const OUTBOUND_DEPTH: usize> UnsafeUnpin for StaticManifoldLane<M, FRAME, INBOUND_DEPTH, OUTBOUND_DEPTH>where
ConstStaticCell<[FrameSlot<FRAME>; INBOUND_DEPTH]>: UnsafeUnpin,
StaticCell<Channel<'static, M, FrameSlot<FRAME>>>: UnsafeUnpin,
StaticCell<EmbassyGrantConsumer<'static, M, FRAME>>: UnsafeUnpin,
ConstStaticCell<[FrameSlot<FRAME>; OUTBOUND_DEPTH]>: UnsafeUnpin,
StaticCell<EmbassyGrantProducer<'static, M, FRAME>>: UnsafeUnpin,
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