[][src]Struct d3_core::executor::stats::ExecutorStats

pub struct ExecutorStats {
    pub id: usize,
    pub tasks_executed: u128,
    pub instructs_sent: u128,
    pub blocked_senders: u128,
    pub max_blocked_senders: usize,
    pub exhausted_slice: u128,
    pub recv_time: Duration,
    pub time_on_queue: Duration,
    pub disturbed_nap: u128,
    pub sleep_count: u128,
    pub sleep_time: Duration,
}

The ExecutorStats expose metrics for each executor.

Fields

id: usizetasks_executed: u128instructs_sent: u128blocked_senders: u128max_blocked_senders: usizeexhausted_slice: u128recv_time: Durationtime_on_queue: Durationdisturbed_nap: u128sleep_count: u128sleep_time: Duration

Trait Implementations

impl Clone for ExecutorStats[src]

impl Copy for ExecutorStats[src]

impl Debug for ExecutorStats[src]

impl Default for ExecutorStats[src]

impl Eq for ExecutorStats[src]

impl PartialEq<ExecutorStats> for ExecutorStats[src]

impl StructuralEq for ExecutorStats[src]

impl StructuralPartialEq for ExecutorStats[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,