pub struct InterruptMainTurnResult {
pub interrupted: bool,
}Expand description
Result of interrupting the main agent turn.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§interrupted: boolWhether an in-flight main agent turn was interrupted. False when the main loop was not processing.
Trait Implementations§
Source§impl Clone for InterruptMainTurnResult
impl Clone for InterruptMainTurnResult
Source§fn clone(&self) -> InterruptMainTurnResult
fn clone(&self) -> InterruptMainTurnResult
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 InterruptMainTurnResult
impl Debug for InterruptMainTurnResult
Source§impl Default for InterruptMainTurnResult
impl Default for InterruptMainTurnResult
Source§fn default() -> InterruptMainTurnResult
fn default() -> InterruptMainTurnResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InterruptMainTurnResult
impl<'de> Deserialize<'de> for InterruptMainTurnResult
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
Auto Trait Implementations§
impl Freeze for InterruptMainTurnResult
impl RefUnwindSafe for InterruptMainTurnResult
impl Send for InterruptMainTurnResult
impl Sync for InterruptMainTurnResult
impl Unpin for InterruptMainTurnResult
impl UnsafeUnpin for InterruptMainTurnResult
impl UnwindSafe for InterruptMainTurnResult
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