Struct RawWakerVTable

pub struct RawWakerVTable { pub(in ::task::wake) clone: unsafe fn(*const ()) -> RawWaker, pub(in ::task::wake) wake: unsafe fn(*const ()), pub(in ::task::wake) wake_by_ref: unsafe fn(*const ()), pub(in ::task::wake) drop: unsafe fn(*const ()) }

A virtual function pointer table (vtable) that specifies the behavior of a RawWaker.

The pointer passed to all functions inside the vtable is the data pointer from the enclosing RawWaker object.

The functions inside this struct are only intended to be called on the data pointer of a properly constructed RawWaker object from inside the RawWaker implementation. Calling one of the contained functions using any other data pointer will cause undefined behavior.

Note that while this type implements PartialEq, comparing function pointers, and hence comparing structs like this that contain function pointers, is unreliable: pointers to the same function can compare inequal (because functions are duplicated in multiple codegen units), and pointers to different functions can compare equal (since identical functions can be deduplicated within a codegen unit).

Thread safety

If the RawWaker will be used to construct a Waker then these functions must all be thread-safe (even though RawWaker is ![Send] + ![Sync]). This is because Waker is [Send] + [Sync], and it may be moved to arbitrary threads or invoked by & reference. For example, this means that if the clone and drop functions manage a reference count, they must do so atomically.

However, if the RawWaker will be used to construct a LocalWaker instead, then these functions don't need to be thread safe. This means that ![Send] + ![Sync] data can be stored in the data pointer, and reference counting does not need any atomic synchronization. This is because LocalWaker is not thread safe itself, so it cannot be sent across threads.

Fields

clone: unsafe fn(*const ()) -> RawWaker

This function will be called when the RawWaker gets cloned, e.g. when the Waker in which the RawWaker is stored gets cloned.

The implementation of this function must retain all resources that are required for this additional instance of a RawWaker and associated task. Calling wake on the resulting RawWaker should result in a wakeup of the same task that would have been awoken by the original RawWaker.

wake: unsafe fn(*const ())

This function will be called when wake is called on the Waker. It must wake up the task associated with this RawWaker.

The implementation of this function must make sure to release any resources that are associated with this instance of a RawWaker and associated task.

wake_by_ref: unsafe fn(*const ())

This function will be called when wake_by_ref is called on the Waker. It must wake up the task associated with this RawWaker.

This function is similar to wake, but must not consume the provided data pointer.

drop: unsafe fn(*const ())

This function will be called when a Waker gets dropped.

The implementation of this function must make sure to release any resources that are associated with this instance of a RawWaker and associated task.

Implementations

impl RawWakerVTable

const fn new(clone: unsafe fn(*const ()) -> RawWaker, wake: unsafe fn(*const ()), wake_by_ref: unsafe fn(*const ()), drop: unsafe fn(*const ())) -> Self

Creates a new RawWakerVTable from the provided clone, wake, wake_by_ref, and drop functions.

If the RawWaker will be used to construct a Waker then these functions must all be thread-safe (even though RawWaker is ![Send] + ![Sync]). This is because Waker is [Send] + [Sync], and it may be moved to arbitrary threads or invoked by & reference. For example, this means that if the clone and drop functions manage a reference count, they must do so atomically.

However, if the RawWaker will be used to construct a LocalWaker instead, then these functions don't need to be thread safe. This means that ![Send] + ![Sync] data can be stored in the data pointer, and reference counting does not need any atomic synchronization. This is because LocalWaker is not thread safe itself, so it cannot be sent across threads.

clone

This function will be called when the RawWaker gets cloned, e.g. when the Waker/LocalWaker in which the RawWaker is stored gets cloned.

The implementation of this function must retain all resources that are required for this additional instance of a RawWaker and associated task. Calling wake on the resulting RawWaker should result in a wakeup of the same task that would have been awoken by the original RawWaker.

wake

This function will be called when wake is called on the Waker. It must wake up the task associated with this RawWaker.

The implementation of this function must make sure to release any resources that are associated with this instance of a RawWaker and associated task.

wake_by_ref

This function will be called when wake_by_ref is called on the Waker. It must wake up the task associated with this RawWaker.

This function is similar to wake, but must not consume the provided data pointer.

drop

This function will be called when a Waker/LocalWaker gets dropped.

The implementation of this function must make sure to release any resources that are associated with this instance of a RawWaker and associated task.

Trait Implementations

impl Clone for RawWakerVTable

fn clone(&self) -> RawWakerVTable

impl Copy for RawWakerVTable

impl Debug for RawWakerVTable

fn fmt(&self, f: &mut Formatter<'_>) -> Result

impl PartialEq for RawWakerVTable

fn eq(&self, other: &RawWakerVTable) -> bool

impl StructuralPartialEq for RawWakerVTable

impl TrivialClone for RawWakerVTable

Auto Trait Implementations

impl Freeze for RawWakerVTable

impl RefUnwindSafe for RawWakerVTable

impl Send for RawWakerVTable

impl Sync for RawWakerVTable

impl Unpin for RawWakerVTable

impl UnsafeUnpin for RawWakerVTable

impl UnwindSafe for RawWakerVTable

Blanket Implementations

impl<T> Any for RawWakerVTable where T: 'static + ?Sized,

fn type_id(&self) -> TypeId

impl<T> Borrow<T> for RawWakerVTable where T: ?Sized,

fn borrow(&self) -> &T

impl<T> BorrowMut<T> for RawWakerVTable where T: ?Sized,

fn borrow_mut(&mut self) -> &mut T

impl<T> CloneToUninit for RawWakerVTable where T: Clone,

unsafe fn clone_to_uninit(&self, dest: *mut u8)

impl<T> From<T> for RawWakerVTable

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> Printable for RawWakerVTable where T: Copy + Debug,

impl<T> SizeHint for RawWakerVTable where T: ?Sized,

fn lower_bound(&self) -> usize
fn upper_bound(&self) -> Option<usize>

impl<T> SizedTypeProperties for RawWakerVTable

impl<T, U> Into<U> for RawWakerVTable where U: From<T>,

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom<U> for RawWakerVTable where U: Into<T>,

type Error = Infallible;
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

impl<T, U> TryInto<U> for RawWakerVTable where U: TryFrom<T>,

type Error = <U as TryFrom<T>>::Error;
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>