Struct timely::logging::ApplicationEvent[][src]

pub struct ApplicationEvent {
    pub id: usize,
    pub is_start: bool,
}

Application-defined code start or stop

Fields

id: usize

Unique event type identifier

is_start: bool

True when activity begins, false when it stops

Trait Implementations

impl Abomonation for ApplicationEvent[src]

impl Clone for ApplicationEvent[src]

impl Debug for ApplicationEvent[src]

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

impl Eq for ApplicationEvent[src]

impl From<ApplicationEvent> for TimelyEvent[src]

impl Hash for ApplicationEvent[src]

impl Ord for ApplicationEvent[src]

impl PartialEq<ApplicationEvent> for ApplicationEvent[src]

impl PartialOrd<ApplicationEvent> for ApplicationEvent[src]

impl Serialize for ApplicationEvent[src]

impl StructuralEq for ApplicationEvent[src]

impl StructuralPartialEq for ApplicationEvent[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> Data for T where
    T: 'static + Clone
[src]

impl<T> Data for T where
    T: 'static + Send + Sync + Any + Abomonation
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> ExchangeData for T where
    T: Data + Data
[src]

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

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

impl<T> ProgressEventTimestamp for T where
    T: Data + Any + Debug
[src]

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.