Enum messagebus::Event [−][src]
#[non_exhaustive]
pub enum Event<M, E: StdSyncSendError> {
Response(u64, Result<M, Error<(), E>>),
Synchronized(Result<(), Error<(), E>>),
Finished(u64),
Error(E),
InitFailed(Error<(), E>),
Stats(Stats),
Flushed,
Exited,
Ready,
Pause,
}Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Finished(u64)Tuple Fields of Finished
0: u64