[][src]Struct noria::debug::stats::DomainStats

pub struct DomainStats {
    pub total_time: u64,
    pub total_ptime: u64,
    pub total_replay_time: u64,
    pub total_forward_time: u64,
    pub wait_time: u64,
}

Statistics about a domain.

All times are in nanoseconds.

Fields

total_time: u64

Total wall-clock time elapsed while processing in this domain.

total_ptime: u64

Total thread time elapsed while processing in this domain.

total_replay_time: u64

Total wall-clock time spent processing replays in this domain.

total_forward_time: u64

Total wall-clock time spent processing forward updates in this domain.

wait_time: u64

Total wall-clock time spent waiting for work in this domain.

Trait Implementations

impl Debug for DomainStats[src]

impl<'de> Deserialize<'de> for DomainStats[src]

impl Serialize for DomainStats[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]

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

impl<T> WithSubscriber for T[src]