struct BarrierWaitInner<'a> {
barrier: &'a Barrier,
lock: Option<Lock<'a, State>>,
evl: Option<EventListener>,
state: WaitState,
}Expand description
The future returned by Barrier::wait().
Fields§
§barrier: &'a Barrier§lock: Option<Lock<'a, State>>§evl: Option<EventListener>§state: WaitStateTrait Implementations§
Source§impl EventListenerFuture for BarrierWaitInner<'_>
impl EventListenerFuture for BarrierWaitInner<'_>
impl<'__pin, 'a> Unpin for BarrierWaitInner<'a>where
PinnedFieldsOf<__Origin<'__pin, 'a>>: Unpin,
Auto Trait Implementations§
impl<'a> Freeze for BarrierWaitInner<'a>
impl<'a> !RefUnwindSafe for BarrierWaitInner<'a>
impl<'a> Send for BarrierWaitInner<'a>
impl<'a> Sync for BarrierWaitInner<'a>
impl<'a> !UnwindSafe for BarrierWaitInner<'a>
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