pub enum TimelyEvent {
Show 13 variants
    Operates(OperatesEvent),
    Channels(ChannelsEvent),
    PushProgress(PushProgressEvent),
    Messages(MessagesEvent),
    Schedule(ScheduleEvent),
    Shutdown(ShutdownEvent),
    Application(ApplicationEvent),
    GuardedMessage(GuardedMessageEvent),
    GuardedProgress(GuardedProgressEvent),
    CommChannels(CommChannelsEvent),
    Input(InputEvent),
    Park(ParkEvent),
    Text(String),
}Expand description
An event in a timely worker
Variants§
Operates(OperatesEvent)
Operator creation.
Channels(ChannelsEvent)
Channel creation.
PushProgress(PushProgressEvent)
Progress propagation (reasoning).
Messages(MessagesEvent)
Message send or receive.
Schedule(ScheduleEvent)
Operator start or stop.
Shutdown(ShutdownEvent)
Operator shutdown.
Application(ApplicationEvent)
No clue.
GuardedMessage(GuardedMessageEvent)
Per-message computation.
GuardedProgress(GuardedProgressEvent)
Per-notification computation.
CommChannels(CommChannelsEvent)
Communication channel event.
Input(InputEvent)
Input event.
Park(ParkEvent)
Park event.
Text(String)
Unstructured event.
Trait Implementations§
Source§impl Abomonation for TimelyEvent
 
impl Abomonation for TimelyEvent
Source§impl Clone for TimelyEvent
 
impl Clone for TimelyEvent
Source§fn clone(&self) -> TimelyEvent
 
fn clone(&self) -> TimelyEvent
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreSource§impl Debug for TimelyEvent
 
impl Debug for TimelyEvent
Source§impl<'de> Deserialize<'de> for TimelyEvent
 
impl<'de> Deserialize<'de> for TimelyEvent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<ApplicationEvent> for TimelyEvent
 
impl From<ApplicationEvent> for TimelyEvent
Source§fn from(v: ApplicationEvent) -> TimelyEvent
 
fn from(v: ApplicationEvent) -> TimelyEvent
Converts to this type from the input type.
Source§impl From<ChannelsEvent> for TimelyEvent
 
impl From<ChannelsEvent> for TimelyEvent
Source§fn from(v: ChannelsEvent) -> TimelyEvent
 
fn from(v: ChannelsEvent) -> TimelyEvent
Converts to this type from the input type.
Source§impl From<CommChannelsEvent> for TimelyEvent
 
impl From<CommChannelsEvent> for TimelyEvent
Source§fn from(v: CommChannelsEvent) -> TimelyEvent
 
fn from(v: CommChannelsEvent) -> TimelyEvent
Converts to this type from the input type.
Source§impl From<GuardedMessageEvent> for TimelyEvent
 
impl From<GuardedMessageEvent> for TimelyEvent
Source§fn from(v: GuardedMessageEvent) -> TimelyEvent
 
fn from(v: GuardedMessageEvent) -> TimelyEvent
Converts to this type from the input type.
Source§impl From<GuardedProgressEvent> for TimelyEvent
 
impl From<GuardedProgressEvent> for TimelyEvent
Source§fn from(v: GuardedProgressEvent) -> TimelyEvent
 
fn from(v: GuardedProgressEvent) -> TimelyEvent
Converts to this type from the input type.
Source§impl From<InputEvent> for TimelyEvent
 
impl From<InputEvent> for TimelyEvent
Source§fn from(v: InputEvent) -> TimelyEvent
 
fn from(v: InputEvent) -> TimelyEvent
Converts to this type from the input type.
Source§impl From<MessagesEvent> for TimelyEvent
 
impl From<MessagesEvent> for TimelyEvent
Source§fn from(v: MessagesEvent) -> TimelyEvent
 
fn from(v: MessagesEvent) -> TimelyEvent
Converts to this type from the input type.
Source§impl From<OperatesEvent> for TimelyEvent
 
impl From<OperatesEvent> for TimelyEvent
Source§fn from(v: OperatesEvent) -> TimelyEvent
 
fn from(v: OperatesEvent) -> TimelyEvent
Converts to this type from the input type.
Source§impl From<ParkEvent> for TimelyEvent
 
impl From<ParkEvent> for TimelyEvent
Source§fn from(v: ParkEvent) -> TimelyEvent
 
fn from(v: ParkEvent) -> TimelyEvent
Converts to this type from the input type.
Source§impl From<PushProgressEvent> for TimelyEvent
 
impl From<PushProgressEvent> for TimelyEvent
Source§fn from(v: PushProgressEvent) -> TimelyEvent
 
fn from(v: PushProgressEvent) -> TimelyEvent
Converts to this type from the input type.
Source§impl From<ScheduleEvent> for TimelyEvent
 
impl From<ScheduleEvent> for TimelyEvent
Source§fn from(v: ScheduleEvent) -> TimelyEvent
 
fn from(v: ScheduleEvent) -> TimelyEvent
Converts to this type from the input type.
Source§impl From<ShutdownEvent> for TimelyEvent
 
impl From<ShutdownEvent> for TimelyEvent
Source§fn from(v: ShutdownEvent) -> TimelyEvent
 
fn from(v: ShutdownEvent) -> TimelyEvent
Converts to this type from the input type.
Source§impl Hash for TimelyEvent
 
impl Hash for TimelyEvent
Source§impl Ord for TimelyEvent
 
impl Ord for TimelyEvent
Source§fn cmp(&self, other: &TimelyEvent) -> Ordering
 
fn cmp(&self, other: &TimelyEvent) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
    Self: Sized,
 
fn max(self, other: Self) -> Selfwhere
    Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for TimelyEvent
 
impl PartialEq for TimelyEvent
Source§impl PartialOrd for TimelyEvent
 
impl PartialOrd for TimelyEvent
Source§impl Serialize for TimelyEvent
 
impl Serialize for TimelyEvent
impl Eq for TimelyEvent
impl StructuralPartialEq for TimelyEvent
Auto Trait Implementations§
impl Freeze for TimelyEvent
impl RefUnwindSafe for TimelyEvent
impl Send for TimelyEvent
impl Sync for TimelyEvent
impl Unpin for TimelyEvent
impl UnwindSafe for TimelyEvent
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more