pub struct TaskInstance {
pub id: InstanceId,
pub task_id: TaskId,
pub scheduled_at: DateTime<Utc>,
pub status: TaskStatus,
pub claimed_by: Option<NodeId>,
pub claim_version: u64,
pub started_at: Option<DateTime<Utc>>,
pub completed_at: Option<DateTime<Utc>>,
pub result: Option<Bytes>,
pub error: Option<String>,
pub attempt: u32,
}Expand description
Task instance - a single execution of a task.
Fields§
§id: InstanceIdUnique identifier for this instance.
task_id: TaskIdThe task this instance belongs to.
scheduled_at: DateTime<Utc>Scheduled execution time.
status: TaskStatusCurrent status.
claimed_by: Option<NodeId>Node that claimed this instance.
claim_version: u64Version for optimistic locking.
started_at: Option<DateTime<Utc>>Actual start time.
completed_at: Option<DateTime<Utc>>Completion time.
result: Option<Bytes>Result data (if successful).
error: Option<String>Error message (if failed).
attempt: u32Current attempt number.
Implementations§
Source§impl TaskInstance
impl TaskInstance
Trait Implementations§
Source§impl Clone for TaskInstance
impl Clone for TaskInstance
Source§fn clone(&self) -> TaskInstance
fn clone(&self) -> TaskInstance
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 TaskInstance
impl Debug for TaskInstance
Source§impl<'de> Deserialize<'de> for TaskInstance
impl<'de> Deserialize<'de> for TaskInstance
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<TaskInstance, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<TaskInstance, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for TaskInstance
impl Serialize for TaskInstance
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl !Freeze for TaskInstance
impl RefUnwindSafe for TaskInstance
impl Send for TaskInstance
impl Sync for TaskInstance
impl Unpin for TaskInstance
impl UnwindSafe for TaskInstance
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more