pub enum AgentExecutionMode {
SharedWorkspace,
IsolatedWorkspace,
GitWorktree,
Remote,
}Expand description
Execution mode used by a subagent.
Variants§
Shared workspace with read/write access controlled elsewhere.
IsolatedWorkspace
Dedicated isolated workspace path.
GitWorktree
Git worktree-backed isolated execution.
Remote
Remote execution target.
Trait Implementations§
Source§impl Clone for AgentExecutionMode
impl Clone for AgentExecutionMode
Source§fn clone(&self) -> AgentExecutionMode
fn clone(&self) -> AgentExecutionMode
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 AgentExecutionMode
impl Debug for AgentExecutionMode
Source§impl Default for AgentExecutionMode
impl Default for AgentExecutionMode
Source§fn default() -> AgentExecutionMode
fn default() -> AgentExecutionMode
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AgentExecutionMode
impl<'de> Deserialize<'de> for AgentExecutionMode
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 AgentExecutionMode
impl PartialEq for AgentExecutionMode
Source§impl Serialize for AgentExecutionMode
impl Serialize for AgentExecutionMode
impl Eq for AgentExecutionMode
impl StructuralPartialEq for AgentExecutionMode
Auto Trait Implementations§
impl Freeze for AgentExecutionMode
impl RefUnwindSafe for AgentExecutionMode
impl Send for AgentExecutionMode
impl Sync for AgentExecutionMode
impl Unpin for AgentExecutionMode
impl UnwindSafe for AgentExecutionMode
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