Struct Driver

Source
pub struct Driver<T> { /* private fields */ }
Expand description

An owned handle to a Driver instance that can be used to create initial dispatchers.

Implementations§

Source§

impl<T: 'static> Driver<T>

Source

pub fn new_dispatcher( &self, dispatcher: DispatcherBuilder, ) -> Result<DispatcherRef<'static>, Status>

Returns a builder capable of creating a new dispatcher. Note that this dispatcher cannot outlive the driver and is only capable of being stopped by shutting down the driver. It is meant to be created to serve as the initial or default dispatcher for a driver.

Source

pub fn enter<R>(&mut self, f: impl FnOnce() -> R) -> R

Run a closure in the context of a driver.

Source

pub fn add_allowed_scheduler_role(&self, scheduler_role: &str)

Adds an allowed scheduler role to the driver

Source

pub fn shutdown<F: DriverShutdownObserverFn<T>>(self, f: F)

Asynchronously shuts down all dispatchers owned by |driver|. |f| will be called once shutdown completes. This is guaranteed to be after all the dispatcher’s shutdown observers have been called, and will be running on the thread of the final dispatcher which has been shutdown.

Source

pub fn release(self) -> DriverRef<'static, T>

Releases ownership of this driver instance, allowing it to be shut down when the runtime shuts down.

Trait Implementations§

Source§

impl<T: Debug> Debug for Driver<T>

Source§

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

Formats the value using the given formatter. Read more
Source§

impl<T> Drop for Driver<T>

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more
Source§

impl<T> PartialEq<UnownedDriver> for Driver<T>

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<T: Send> Send for Driver<T>

SAFETY: This inner pointer is movable across threads.

Auto Trait Implementations§

§

impl<T> Freeze for Driver<T>

§

impl<T> RefUnwindSafe for Driver<T>
where T: RefUnwindSafe,

§

impl<T> !Sync for Driver<T>

§

impl<T> Unpin for Driver<T>

§

impl<T> UnwindSafe for Driver<T>
where T: RefUnwindSafe,

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

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

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

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

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

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

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.