pub struct ExitPlanModeResult {
pub approved: bool,
pub selected_action: Option<String>,
pub feedback: Option<String>,
}Expand description
Result of an exit-plan-mode request.
Fields§
§approved: boolWhether the user approved exiting plan mode.
selected_action: Option<String>The action the user selected (if any).
feedback: Option<String>Optional feedback text from the user.
Trait Implementations§
Source§impl Clone for ExitPlanModeResult
impl Clone for ExitPlanModeResult
Source§fn clone(&self) -> ExitPlanModeResult
fn clone(&self) -> ExitPlanModeResult
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 ExitPlanModeResult
impl Debug for ExitPlanModeResult
Auto Trait Implementations§
impl Freeze for ExitPlanModeResult
impl RefUnwindSafe for ExitPlanModeResult
impl Send for ExitPlanModeResult
impl Sync for ExitPlanModeResult
impl Unpin for ExitPlanModeResult
impl UnsafeUnpin for ExitPlanModeResult
impl UnwindSafe for ExitPlanModeResult
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