Enum ceviche::ServiceEvent[][src]

pub enum ServiceEvent<T> {
    Continue,
    Pause,
    Stop,
    SessionConnect(u32),
    SessionDisconnect(u32),
    SessionLogon(u32),
    SessionLogoff(u32),
    SessionLock(u32),
    SessionUnlock(u32),
    Custom(T),
}

Events that are sent to the service.

Variants

Trait Implementations

impl<T> Display for ServiceEvent<T>
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<T> Send for ServiceEvent<T> where
    T: Send

impl<T> Sync for ServiceEvent<T> where
    T: Sync