pub struct ProcessTaskExecuteParams {
pub executor_id: String,
pub execution_id: String,
pub task_id: String,
pub thread_id: Option<ThreadId>,
pub turn_id: Option<TurnId>,
pub workspace_root: Option<String>,
pub input: Value,
}Expand description
tasks/execute params: canonical task input plus execution provenance
and a host-chosen execution id the child must echo and stream against.
Fields§
§executor_id: String§execution_id: String§task_id: String§thread_id: Option<ThreadId>§turn_id: Option<TurnId>§workspace_root: Option<String>§input: ValueTrait Implementations§
Source§impl Clone for ProcessTaskExecuteParams
impl Clone for ProcessTaskExecuteParams
Source§fn clone(&self) -> ProcessTaskExecuteParams
fn clone(&self) -> ProcessTaskExecuteParams
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 ProcessTaskExecuteParams
impl Debug for ProcessTaskExecuteParams
Source§impl<'de> Deserialize<'de> for ProcessTaskExecuteParams
impl<'de> Deserialize<'de> for ProcessTaskExecuteParams
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 ProcessTaskExecuteParams
impl PartialEq for ProcessTaskExecuteParams
Source§fn eq(&self, other: &ProcessTaskExecuteParams) -> bool
fn eq(&self, other: &ProcessTaskExecuteParams) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProcessTaskExecuteParams
impl Serialize for ProcessTaskExecuteParams
impl StructuralPartialEq for ProcessTaskExecuteParams
Auto Trait Implementations§
impl Freeze for ProcessTaskExecuteParams
impl RefUnwindSafe for ProcessTaskExecuteParams
impl Send for ProcessTaskExecuteParams
impl Sync for ProcessTaskExecuteParams
impl Unpin for ProcessTaskExecuteParams
impl UnsafeUnpin for ProcessTaskExecuteParams
impl UnwindSafe for ProcessTaskExecuteParams
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