Struct tokio::runtime::scheduler::current_thread::Core

source ·
struct Core {
    tasks: VecDeque<Notified<Arc<Handle>>>,
    tick: u32,
    driver: Option<Driver>,
    metrics: MetricsBatch,
    global_queue_interval: u32,
    unhandled_panic: bool,
}
Expand description

Data required for executing the scheduler. The struct is passed around to a function that will perform the scheduling work and acts as a capability token.

Fields§

§tasks: VecDeque<Notified<Arc<Handle>>>

Scheduler run queue

§tick: u32

Current tick

§driver: Option<Driver>

Runtime driver

The driver is removed before starting to park the thread

§metrics: MetricsBatch

Metrics batch

§global_queue_interval: u32

How often to check the global queue

§unhandled_panic: bool

True if a task panicked without being handled and the runtime is configured to shutdown on unhandled panic.

Implementations§

source§

impl Core

source

fn tick(&mut self)

Get and increment the current tick

source

fn next_task(&mut self, handle: &Handle) -> Option<Notified<Arc<Handle>>>

source

fn next_local_task(&mut self, handle: &Handle) -> Option<Notified<Arc<Handle>>>

source

fn push_task(&mut self, handle: &Handle, task: Notified<Arc<Handle>>)

source

fn submit_metrics(&mut self, handle: &Handle)

Auto Trait Implementations§

§

impl Freeze for Core

§

impl !RefUnwindSafe for Core

§

impl Send for Core

§

impl Sync for Core

§

impl Unpin for Core

§

impl !UnwindSafe for Core

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>,

§

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>,

§

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.