pub enum UIExitPlanModeAction {
ExitOnly,
Interactive,
Autopilot,
AutopilotFleet,
Unknown,
}Expand description
The action the user selected. Defaults to ‘autopilot’ when autoApproveEdits is true, otherwise ‘interactive’.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Variants§
ExitOnly
Exit plan mode without starting implementation.
Interactive
Exit plan mode and continue interactively.
Autopilot
Exit plan mode and continue in autopilot mode.
AutopilotFleet
Exit plan mode and continue in autopilot mode with parallel subagent execution.
Unknown
Unknown variant for forward compatibility.
Trait Implementations§
Source§impl Clone for UIExitPlanModeAction
impl Clone for UIExitPlanModeAction
Source§fn clone(&self) -> UIExitPlanModeAction
fn clone(&self) -> UIExitPlanModeAction
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 UIExitPlanModeAction
impl Debug for UIExitPlanModeAction
Source§impl Default for UIExitPlanModeAction
impl Default for UIExitPlanModeAction
Source§fn default() -> UIExitPlanModeAction
fn default() -> UIExitPlanModeAction
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UIExitPlanModeAction
impl<'de> Deserialize<'de> for UIExitPlanModeAction
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
impl Eq for UIExitPlanModeAction
Source§impl PartialEq for UIExitPlanModeAction
impl PartialEq for UIExitPlanModeAction
Source§fn eq(&self, other: &UIExitPlanModeAction) -> bool
fn eq(&self, other: &UIExitPlanModeAction) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for UIExitPlanModeAction
impl Serialize for UIExitPlanModeAction
impl StructuralPartialEq for UIExitPlanModeAction
Auto Trait Implementations§
impl Freeze for UIExitPlanModeAction
impl RefUnwindSafe for UIExitPlanModeAction
impl Send for UIExitPlanModeAction
impl Sync for UIExitPlanModeAction
impl Unpin for UIExitPlanModeAction
impl UnsafeUnpin for UIExitPlanModeAction
impl UnwindSafe for UIExitPlanModeAction
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