Enum timely::logging::TimelyEvent

source ·
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 Clone for TimelyEvent

source§

fn clone(&self) -> TimelyEvent

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Columnar for TimelyEvent

§

type Ref<'a> = TimelyEventReference<<OperatesEvent as Columnar>::Ref<'a>, <ChannelsEvent as Columnar>::Ref<'a>, <PushProgressEvent as Columnar>::Ref<'a>, <MessagesEvent as Columnar>::Ref<'a>, <ScheduleEvent as Columnar>::Ref<'a>, <ShutdownEvent as Columnar>::Ref<'a>, <ApplicationEvent as Columnar>::Ref<'a>, <GuardedMessageEvent as Columnar>::Ref<'a>, <GuardedProgressEvent as Columnar>::Ref<'a>, <CommChannelsEvent as Columnar>::Ref<'a>, <InputEvent as Columnar>::Ref<'a>, <ParkEvent as Columnar>::Ref<'a>, <String as Columnar>::Ref<'a>> where Self: 'a, OperatesEvent: 'a, ChannelsEvent: 'a, PushProgressEvent: 'a, MessagesEvent: 'a, ScheduleEvent: 'a, ShutdownEvent: 'a, ApplicationEvent: 'a, GuardedMessageEvent: 'a, GuardedProgressEvent: 'a, CommChannelsEvent: 'a, InputEvent: 'a, ParkEvent: 'a, String: 'a

For each lifetime, a reference with that lifetime. Read more
source§

fn copy_from<'a>(&mut self, other: Self::Ref<'a>)

Repopulates self from a reference. Read more
source§

fn into_owned<'a>(other: Self::Ref<'a>) -> Self

Produce an instance of Self from Self::Ref<'a>.
§

type Container = TimelyEventContainer<<OperatesEvent as Columnar>::Container, <ChannelsEvent as Columnar>::Container, <PushProgressEvent as Columnar>::Container, <MessagesEvent as Columnar>::Container, <ScheduleEvent as Columnar>::Container, <ShutdownEvent as Columnar>::Container, <ApplicationEvent as Columnar>::Container, <GuardedMessageEvent as Columnar>::Container, <GuardedProgressEvent as Columnar>::Container, <CommChannelsEvent as Columnar>::Container, <InputEvent as Columnar>::Container, <ParkEvent as Columnar>::Container, <String as Columnar>::Container>

The type that stores the columnar representation. Read more
source§

fn as_columns<'a, I>(selves: I) -> Self::Container
where I: IntoIterator<Item = &'a Self>, Self: 'a,

Converts a sequence of the references to the type into columnar form.
source§

fn into_columns<I>(selves: I) -> Self::Container
where I: IntoIterator<Item = Self>, Self: Sized,

Converts a sequence of the type into columnar form. Read more
source§

impl Container<TimelyEvent> for TimelyEventContainer<<OperatesEvent as Columnar>::Container, <ChannelsEvent as Columnar>::Container, <PushProgressEvent as Columnar>::Container, <MessagesEvent as Columnar>::Container, <ScheduleEvent as Columnar>::Container, <ShutdownEvent as Columnar>::Container, <ApplicationEvent as Columnar>::Container, <GuardedMessageEvent as Columnar>::Container, <GuardedProgressEvent as Columnar>::Container, <CommChannelsEvent as Columnar>::Container, <InputEvent as Columnar>::Container, <ParkEvent as Columnar>::Container, <String as Columnar>::Container>

§

type Borrowed<'a> = TimelyEventContainer<<<OperatesEvent as Columnar>::Container as Container<OperatesEvent>>::Borrowed<'a>, <<ChannelsEvent as Columnar>::Container as Container<ChannelsEvent>>::Borrowed<'a>, <<PushProgressEvent as Columnar>::Container as Container<PushProgressEvent>>::Borrowed<'a>, <<MessagesEvent as Columnar>::Container as Container<MessagesEvent>>::Borrowed<'a>, <<ScheduleEvent as Columnar>::Container as Container<ScheduleEvent>>::Borrowed<'a>, <<ShutdownEvent as Columnar>::Container as Container<ShutdownEvent>>::Borrowed<'a>, <<ApplicationEvent as Columnar>::Container as Container<ApplicationEvent>>::Borrowed<'a>, <<GuardedMessageEvent as Columnar>::Container as Container<GuardedMessageEvent>>::Borrowed<'a>, <<GuardedProgressEvent as Columnar>::Container as Container<GuardedProgressEvent>>::Borrowed<'a>, <<CommChannelsEvent as Columnar>::Container as Container<CommChannelsEvent>>::Borrowed<'a>, <<InputEvent as Columnar>::Container as Container<InputEvent>>::Borrowed<'a>, <<ParkEvent as Columnar>::Container as Container<ParkEvent>>::Borrowed<'a>, <<String as Columnar>::Container as Container<String>>::Borrowed<'a>, &'a [u8], &'a [u64]> where OperatesEvent: 'a, ChannelsEvent: 'a, PushProgressEvent: 'a, MessagesEvent: 'a, ScheduleEvent: 'a, ShutdownEvent: 'a, ApplicationEvent: 'a, GuardedMessageEvent: 'a, GuardedProgressEvent: 'a, CommChannelsEvent: 'a, InputEvent: 'a, ParkEvent: 'a, String: 'a

The type of a borrowed container. Read more
source§

fn borrow<'a>(&'a self) -> Self::Borrowed<'a>

Converts a reference to the type to a borrowed variant.
source§

impl Debug for TimelyEvent

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for TimelyEvent

source§

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

source§

fn from(v: ApplicationEvent) -> TimelyEvent

Converts to this type from the input type.
source§

impl From<ChannelsEvent> for TimelyEvent

source§

fn from(v: ChannelsEvent) -> TimelyEvent

Converts to this type from the input type.
source§

impl From<CommChannelsEvent> for TimelyEvent

source§

fn from(v: CommChannelsEvent) -> TimelyEvent

Converts to this type from the input type.
source§

impl From<GuardedMessageEvent> for TimelyEvent

source§

fn from(v: GuardedMessageEvent) -> TimelyEvent

Converts to this type from the input type.
source§

impl From<GuardedProgressEvent> for TimelyEvent

source§

fn from(v: GuardedProgressEvent) -> TimelyEvent

Converts to this type from the input type.
source§

impl From<InputEvent> for TimelyEvent

source§

fn from(v: InputEvent) -> TimelyEvent

Converts to this type from the input type.
source§

impl From<MessagesEvent> for TimelyEvent

source§

fn from(v: MessagesEvent) -> TimelyEvent

Converts to this type from the input type.
source§

impl From<OperatesEvent> for TimelyEvent

source§

fn from(v: OperatesEvent) -> TimelyEvent

Converts to this type from the input type.
source§

impl From<ParkEvent> for TimelyEvent

source§

fn from(v: ParkEvent) -> TimelyEvent

Converts to this type from the input type.
source§

impl From<PushProgressEvent> for TimelyEvent

source§

fn from(v: PushProgressEvent) -> TimelyEvent

Converts to this type from the input type.
source§

impl From<ScheduleEvent> for TimelyEvent

source§

fn from(v: ScheduleEvent) -> TimelyEvent

Converts to this type from the input type.
source§

impl From<ShutdownEvent> for TimelyEvent

source§

fn from(v: ShutdownEvent) -> TimelyEvent

Converts to this type from the input type.
source§

impl Hash for TimelyEvent

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Ord for TimelyEvent

source§

fn cmp(&self, other: &TimelyEvent) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl PartialEq for TimelyEvent

source§

fn eq(&self, other: &TimelyEvent) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for TimelyEvent

source§

fn partial_cmp(&self, other: &TimelyEvent) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl<'columnar, C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, C12> Push<&'columnar TimelyEvent> for TimelyEventContainer<C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, C12>
where C0: Len + Push<&'columnar OperatesEvent>, C1: Len + Push<&'columnar ChannelsEvent>, C2: Len + Push<&'columnar PushProgressEvent>, C3: Len + Push<&'columnar MessagesEvent>, C4: Len + Push<&'columnar ScheduleEvent>, C5: Len + Push<&'columnar ShutdownEvent>, C6: Len + Push<&'columnar ApplicationEvent>, C7: Len + Push<&'columnar GuardedMessageEvent>, C8: Len + Push<&'columnar GuardedProgressEvent>, C9: Len + Push<&'columnar CommChannelsEvent>, C10: Len + Push<&'columnar InputEvent>, C11: Len + Push<&'columnar ParkEvent>, C12: Len + Push<&'columnar String>,

source§

fn push(&mut self, item: &'columnar TimelyEvent)

Pushes an item onto self.
source§

fn extend(&mut self, iter: impl IntoIterator<Item = T>)

Pushes elements of an iterator onto self.
source§

impl<C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, C12> Push<TimelyEvent> for TimelyEventContainer<C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, C12>

source§

fn push(&mut self, item: TimelyEvent)

Pushes an item onto self.
source§

fn extend(&mut self, iter: impl IntoIterator<Item = T>)

Pushes elements of an iterator onto self.
source§

impl Serialize for TimelyEvent

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Eq for TimelyEvent

source§

impl StructuralPartialEq for TimelyEvent

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<Q, K> Comparable<K> for Q
where Q: Ord + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn compare(&self, key: &K) -> Ordering

Compare self to key and return their ordering.
source§

impl<T> CopyAs<T> for T

source§

fn copy_as(self) -> T

source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ProgressEventTimestamp for T
where T: Data + Debug + Any,

source§

fn as_any(&self) -> &(dyn Any + 'static)

Upcasts this ProgressEventTimestamp to Any. Read more
source§

fn type_name(&self) -> &'static str

Returns the name of the concrete type of this object. Read more
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> Data for T
where T: Clone + 'static,

source§

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

source§

impl<T> ExchangeData for T
where T: Data + Data,