Skip to main content

Runtime

Struct Runtime 

Source
pub struct Runtime { /* private fields */ }

Implementations§

Source§

impl Runtime

Source

pub fn spawner(&self) -> Spawner

Returns a weak capability for submitting work to this runtime.

Source

pub fn spawn<F, T>( &self, priority: Priority, future: F, ) -> Result<Task<T>, SpawnError>
where F: Future<Output = T> + Send + 'static, T: Send + 'static,

Submits a task to one priority queue.

§Errors

Returns SpawnError::Closed after shutdown begins.

A successful return means the task was admitted into the runtime’s lifecycle. A concurrent forced or timed shutdown may cancel it before its first poll; graceful shutdown still waits for it to reach a terminal state.

Source

pub fn shutdown_graceful(self) -> Result<(), ShutdownError>

Rejects new tasks, drains every accepted task, and joins all workers.

§Errors

Returns ShutdownError::CalledFromWorker when invoked by this runtime’s worker, or ShutdownError::WorkerPanicked if a joined worker panicked.

Source

pub fn shutdown_timeout( self, timeout: Duration, ) -> Result<ShutdownOutcome, ShutdownError>

Drains accepted tasks until timeout, then cancels the remainder.

§Errors

Returns ShutdownError::CalledFromWorker when invoked by this runtime’s worker, or ShutdownError::WorkerPanicked if a joined worker panicked.

Source

pub fn shutdown_now(self) -> Result<(), ShutdownError>

Cancels remaining work and joins all workers.

§Errors

Returns ShutdownError::CalledFromWorker when invoked by this runtime’s worker, or ShutdownError::WorkerPanicked if a joined worker panicked.

Trait Implementations§

Source§

impl Drop for Runtime

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more
Source§

fn pin_drop(self: Pin<&mut Self>)

🔬This is a nightly-only experimental API. (pin_ergonomics)
Execute the destructor for this type, but different to Drop::drop, it requires self to be pinned. Read more

Auto Trait Implementations§

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> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

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

Source§

type Error = !

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

fn try_from(value: U) -> Result<T, !>

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.