Struct WakerRef
pub struct WakerRef<'a> { /* private fields */ }Expand description
A Waker that is only valid for a given lifetime.
Note: this type implements Deref<Target = Waker>,
so it can be used to get a &Waker.
Implementations§
§impl<'a> WakerRef<'a>
impl<'a> WakerRef<'a>
pub fn new_unowned(waker: ManuallyDrop<Waker>) -> WakerRef<'a>
pub fn new_unowned(waker: ManuallyDrop<Waker>) -> WakerRef<'a>
Methods from Deref<Target = Waker>§
1.36.0 · Sourcepub fn wake_by_ref(&self)
pub fn wake_by_ref(&self)
Wakes up the task associated with this Waker without consuming the Waker.
This is similar to wake(), but may be slightly less efficient in
the case where an owned Waker is available. This method should be preferred to
calling waker.clone().wake().
1.36.0 · Sourcepub fn will_wake(&self, other: &Waker) -> bool
pub fn will_wake(&self, other: &Waker) -> bool
Returns true if this Waker and another Waker would awake the same task.
This function works on a best-effort basis, and may return false even
when the Wakers would awaken the same task. However, if this function
returns true, it is guaranteed that the Wakers will awaken the same task.
This function is primarily used for optimization purposes — for example,
this type’s clone_from implementation uses it to
avoid cloning the waker when they would wake the same task anyway.
1.83.0 · Sourcepub fn vtable(&self) -> &'static RawWakerVTable
pub fn vtable(&self) -> &'static RawWakerVTable
Gets the vtable pointer used to create this Waker.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for WakerRef<'a>
impl<'a> RefUnwindSafe for WakerRef<'a>
impl<'a> Send for WakerRef<'a>
impl<'a> Sync for WakerRef<'a>
impl<'a> Unpin for WakerRef<'a>
impl<'a> UnwindSafe for WakerRef<'a>
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
§fn with_current_context(self) -> WithContext<Self> ⓘ
fn with_current_context(self) -> WithContext<Self> ⓘ
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
§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> ⓘ
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> ⓘ
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§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
§fn and<P, B, E>(self, other: P) -> And<T, P>
fn and<P, B, E>(self, other: P) -> And<T, P>
Policy that returns Action::Follow only if self and other return
Action::Follow. Read more