You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unparker is an Arc<Inner>. If Inner implements std::task::Wake, that Arc<Inner> can be converted into a Waker without any additional allocations. This would be useful for the implementation of futures_lite::future::block_on, whose Waker implementation just calls Unparker::unpark.
The text was updated successfully, but these errors were encountered:
Unparker
is anArc<Inner>
. IfInner
implementsstd::task::Wake
, thatArc<Inner>
can be converted into aWaker
without any additional allocations. This would be useful for the implementation offutures_lite::future::block_on
, whoseWaker
implementation just callsUnparker::unpark
.The text was updated successfully, but these errors were encountered: