pub struct TaskLaunchOutcome {
pub task_id: TaskId,
pub attempt_id: AttemptId,
pub outcome: TaskLaunchStatus,
}Expand description
The launch acknowledgement. Historically this was an unconditional echo of the ids with a hard-coded empty failure list, so “spawned” and “actually started” were indistinguishable.
Fields§
§task_id: TaskId§attempt_id: AttemptId§outcome: TaskLaunchStatusTrait Implementations§
Source§impl Clone for TaskLaunchOutcome
impl Clone for TaskLaunchOutcome
Source§fn clone(&self) -> TaskLaunchOutcome
fn clone(&self) -> TaskLaunchOutcome
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TaskLaunchOutcome
impl Debug for TaskLaunchOutcome
Source§impl<'de> Deserialize<'de> for TaskLaunchOutcome
impl<'de> Deserialize<'de> for TaskLaunchOutcome
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 PartialEq for TaskLaunchOutcome
impl PartialEq for TaskLaunchOutcome
Source§impl Serialize for TaskLaunchOutcome
impl Serialize for TaskLaunchOutcome
impl StructuralPartialEq for TaskLaunchOutcome
Auto Trait Implementations§
impl Freeze for TaskLaunchOutcome
impl RefUnwindSafe for TaskLaunchOutcome
impl Send for TaskLaunchOutcome
impl Sync for TaskLaunchOutcome
impl Unpin for TaskLaunchOutcome
impl UnsafeUnpin for TaskLaunchOutcome
impl UnwindSafe for TaskLaunchOutcome
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