pub enum ExitPlanModeAction {
ExitOnly,
Interactive,
Autopilot,
AutopilotFleet,
Unknown,
}Expand description
Exit plan mode action
Variants§
ExitOnly
Exit plan mode without starting implementation.
Interactive
Exit plan mode and continue in interactive mode.
Autopilot
Exit plan mode and continue autonomously.
AutopilotFleet
Exit plan mode and continue with parallel autonomous workers.
Unknown
Unknown variant for forward compatibility.
Trait Implementations§
Source§impl Clone for ExitPlanModeAction
impl Clone for ExitPlanModeAction
Source§fn clone(&self) -> ExitPlanModeAction
fn clone(&self) -> ExitPlanModeAction
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 ExitPlanModeAction
impl Debug for ExitPlanModeAction
Source§impl Default for ExitPlanModeAction
impl Default for ExitPlanModeAction
Source§fn default() -> ExitPlanModeAction
fn default() -> ExitPlanModeAction
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExitPlanModeAction
impl<'de> Deserialize<'de> for ExitPlanModeAction
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 ExitPlanModeAction
impl PartialEq for ExitPlanModeAction
Source§fn eq(&self, other: &ExitPlanModeAction) -> bool
fn eq(&self, other: &ExitPlanModeAction) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ExitPlanModeAction
impl Serialize for ExitPlanModeAction
impl Eq for ExitPlanModeAction
impl StructuralPartialEq for ExitPlanModeAction
Auto Trait Implementations§
impl Freeze for ExitPlanModeAction
impl RefUnwindSafe for ExitPlanModeAction
impl Send for ExitPlanModeAction
impl Sync for ExitPlanModeAction
impl Unpin for ExitPlanModeAction
impl UnsafeUnpin for ExitPlanModeAction
impl UnwindSafe for ExitPlanModeAction
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