Struct delay_timer::timer::task::TaskContext
source · [−]pub struct TaskContext {
pub task_id: u64,
pub record_id: i64,
pub then_fn: Option<fn()>,
pub runtime_kind: RuntimeKind,
/* private fields */
}Expand description
Task runtime context.
Fields
task_id: u64The id of Task.
record_id: i64The id of the task running instance.
then_fn: Option<fn()>Hook functions that may be used in the future.
runtime_kind: RuntimeKindAsync-Runtime Kind
Implementations
sourceimpl TaskContext
impl TaskContext
sourcepub fn record_id(&mut self, record_id: i64) -> &mut Self
pub fn record_id(&mut self, record_id: i64) -> &mut Self
Get the id of the task running instance.
sourcepub fn then_fn(&mut self, then_fn: fn()) -> &mut Self
pub fn then_fn(&mut self, then_fn: fn()) -> &mut Self
Get hook functions that may be used in the future.
sourcepub async fn finish_task(self, finish_output: Option<FinishOutput>)
pub async fn finish_task(self, finish_output: Option<FinishOutput>)
Send a task-Finish signal to EventHandle.
Trait Implementations
sourceimpl Clone for TaskContext
impl Clone for TaskContext
sourcefn clone(&self) -> TaskContext
fn clone(&self) -> TaskContext
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 TaskContext
impl Debug for TaskContext
sourceimpl Default for TaskContext
impl Default for TaskContext
sourcefn default() -> TaskContext
fn default() -> TaskContext
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for TaskContext
impl Send for TaskContext
impl Sync for TaskContext
impl Unpin for TaskContext
impl UnwindSafe for TaskContext
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