pub struct ExecutionTasksResponse {
pub execution_id: String,
pub tasks: Vec<ExecutionTaskSummary>,
}Expand description
Envelope returned by GET /executions/{id}/tasks. Mirrors the server’s
get_execution_tasks response and the TS SDK’s ExecutionTasksResponse.
Fields§
§execution_id: String§tasks: Vec<ExecutionTaskSummary>Trait Implementations§
Source§impl Clone for ExecutionTasksResponse
impl Clone for ExecutionTasksResponse
Source§fn clone(&self) -> ExecutionTasksResponse
fn clone(&self) -> ExecutionTasksResponse
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 ExecutionTasksResponse
impl Debug for ExecutionTasksResponse
Source§impl<'de> Deserialize<'de> for ExecutionTasksResponse
impl<'de> Deserialize<'de> for ExecutionTasksResponse
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 ExecutionTasksResponse
impl RefUnwindSafe for ExecutionTasksResponse
impl Send for ExecutionTasksResponse
impl Sync for ExecutionTasksResponse
impl Unpin for ExecutionTasksResponse
impl UnsafeUnpin for ExecutionTasksResponse
impl UnwindSafe for ExecutionTasksResponse
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