pub struct Giver { /* private fields */ }Expand description
An entity that gives a value when wanted.
Implementations§
source§impl Giver
impl Giver
sourcepub fn want<'a>(&'a mut self) -> impl Future<Output = Result<(), Closed>> + 'a
pub fn want<'a>(&'a mut self) -> impl Future<Output = Result<(), Closed>> + 'a
Returns a Future that fulfills when the Taker has done some action.
sourcepub fn poll_want(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Closed>>
pub fn poll_want(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Closed>>
Poll whether the Taker has registered interest in another value.
- If the
Takerhas calledwant(), this returnsAsync::Ready(()). - If the
Takerhas not calledwant()since last poll, this returnsAsync::NotReady, and parks the current task to be notified when theTakerdoes callwant(). - If the
Takerhas canceled (or dropped), this returnsClosed.
After knowing that the Taker is wanting, the state can be reset by
calling give.
sourcepub fn give(&self) -> bool
pub fn give(&self) -> bool
Mark the state as idle, if the Taker currently is wanting.
Returns true if Taker was wanting, false otherwise.
sourcepub fn is_wanting(&self) -> bool
pub fn is_wanting(&self) -> bool
Check if the Taker has called want() without parking a task.
This is safe to call outside of a futures task context, but other means of being notified is left to the user.
sourcepub fn is_canceled(&self) -> bool
pub fn is_canceled(&self) -> bool
Check if the Taker has canceled interest without parking a task.
Converts this into a SharedGiver.