pub struct TaskDetail {
pub entry: String,
pub node_id_list: Vec<MaaId>,
pub status: MaaStatus,
pub nodes: Vec<Option<NodeDetail>>,
}Expand description
Details of a task execution.
Fields§
§entry: StringEntry point node name
node_id_list: Vec<MaaId>List of node IDs that were executed
status: MaaStatusFinal status of the task
nodes: Vec<Option<NodeDetail>>Detailed node information (hydrated from node_id_list)
Trait Implementations§
Source§impl Clone for TaskDetail
impl Clone for TaskDetail
Source§fn clone(&self) -> TaskDetail
fn clone(&self) -> TaskDetail
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 TaskDetail
impl Debug for TaskDetail
Source§impl<'de> Deserialize<'de> for TaskDetail
impl<'de> Deserialize<'de> for TaskDetail
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
Auto Trait Implementations§
impl Freeze for TaskDetail
impl RefUnwindSafe for TaskDetail
impl Send for TaskDetail
impl Sync for TaskDetail
impl Unpin for TaskDetail
impl UnwindSafe for TaskDetail
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