pub struct WaitGuard {
_send: Sender<Never>,
}Expand description
RAII guard held by a task which is being waited for.
The existence of values of this type represents outstanding work for
its corresponding WaitGroup.
A WaitGuard can be cloned using WaitGuard::clone. This allows
a task to spawn additional tasks, recursively.
Fields§
§_send: Sender<Never>Sender is held to keep the Receiver end open (stored in WaitGroup).
The dropping of all senders will cause the receiver to detect and close.
The [Never] type means no value can/will ever be sent through the channel.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for WaitGuard
impl RefUnwindSafe for WaitGuard
impl Send for WaitGuard
impl Sync for WaitGuard
impl Unpin for WaitGuard
impl UnsafeUnpin for WaitGuard
impl UnwindSafe for WaitGuard
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more