A virtual function pointer table (vtable) that specifies the behavior of a `RawWaker`.| doc.rust-lang.org
A `RawWaker` allows the implementor of a task executor to create a `Waker` or a `LocalWaker` which provides customized wakeup behavior.| doc.rust-lang.org
Source of the Rust file `library/core/src/task/wake.rs`.| doc.rust-lang.org
The `()` type, also called “unit”.| doc.rust-lang.org
The boolean type.| doc.rust-lang.org
A `Waker` is a handle for waking up a task by notifying its executor that it is ready to be run.| doc.rust-lang.org
The context of an asynchronous task.| doc.rust-lang.org
A future represents an asynchronous computation obtained by use of `async`.| doc.rust-lang.org
Raw, unsafe pointers, `*const T`, and `*mut T`.| doc.rust-lang.org