cosmic::executor

Type Alias Default

Source
pub type Default = Executor;
Expand description

Uses the single thread executor by default.

Aliased Type§

struct Default(/* private fields */);

Trait Implementations

Source§

impl Executor for Executor

Source§

fn new() -> Result<Self, Error>

Creates a new Executor.
Source§

fn spawn(&self, future: impl Future<Output = ()> + Send + 'static)

Spawns a future in the Executor.
Source§

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

Runs the given closure inside the Executor. Read more