Enum rabble::Msg [] [src]

pub enum Msg<T> {
    User(T),
    ClusterStatus(ClusterStatus),
    ExecutorStatus(ExecutorStatus),
    StartTimer(usize),
    CancelTimer(Option<CorrelationId>),
    Timeout,
    Shutdown,
    GetMetrics,
    Metrics(Vec<(String, Metric)>),
}

Variants

Trait Implementations

impl<T: Debug> Debug for Msg<T>
[src]

Formats the value using the given formatter.

impl<T: Clone> Clone for Msg<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: PartialEq> PartialEq for Msg<T>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.