Enum delay_timer::utils::status_report::PublicEvent
source · [−]pub enum PublicEvent {
RemoveTask(u64),
RunningTask(u64, i64),
FinishTask(PublicFinishTaskBody),
TimeoutTask(u64, i64),
}status-report only.Expand description
PublicEvent, describes the open events that occur in the delay-timer of the task.
Variants
RemoveTask(u64)
Describes which task is removed.
RunningTask(u64, i64)
Describes which task produced a new running instance, record the id.
FinishTask(PublicFinishTaskBody)
Describe which task instance completed.
TimeoutTask(u64, i64)
Describe which task instance timeout .
Implementations
sourceimpl PublicEvent
impl PublicEvent
sourcepub fn get_task_id(&self) -> u64
pub fn get_task_id(&self) -> u64
Get the task_id corresponding to the event.
sourcepub fn get_record_id(&self) -> Option<i64>
pub fn get_record_id(&self) -> Option<i64>
Get the record_id corresponding to the event.
Trait Implementations
sourceimpl Clone for PublicEvent
impl Clone for PublicEvent
sourcefn clone(&self) -> PublicEvent
fn clone(&self) -> PublicEvent
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for PublicEvent
impl Debug for PublicEvent
sourceimpl TryFrom<&'_ TimerEvent> for PublicEvent
impl TryFrom<&'_ TimerEvent> for PublicEvent
sourceimpl TryFrom<TimerEvent> for PublicEvent
impl TryFrom<TimerEvent> for PublicEvent
Auto Trait Implementations
impl RefUnwindSafe for PublicEvent
impl Send for PublicEvent
impl Sync for PublicEvent
impl Unpin for PublicEvent
impl UnwindSafe for PublicEvent
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;
fn instrument(self, span: Span) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;
T: Future, type Output = <T as Future>::Output;
sourcefn in_current_span(self) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;
fn in_current_span(self) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;
T: Future, type Output = <T as Future>::Output;
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T> where
T: Future, type Output = <T as Future>::Output; where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T> where
T: Future, type Output = <T as Future>::Output; where
S: Into<Dispatch>,
T: Future, type Output = <T as Future>::Output;
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T> where
T: Future, type Output = <T as Future>::Output;
fn with_current_subscriber(self) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T> where
T: Future, type Output = <T as Future>::Output;
T: Future, type Output = <T as Future>::Output;
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more