pub struct ExecutionSummary {
pub had_tool_calls: bool,
pub had_code_execution: bool,
}Expand description
High-level execution summary for a completed turn.
Fields§
§had_tool_calls: bool§had_code_execution: boolTrait Implementations§
Source§impl Clone for ExecutionSummary
impl Clone for ExecutionSummary
Source§fn clone(&self) -> ExecutionSummary
fn clone(&self) -> ExecutionSummary
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 ExecutionSummary
impl Debug for ExecutionSummary
Source§impl<'de> Deserialize<'de> for ExecutionSummary
impl<'de> Deserialize<'de> for ExecutionSummary
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ExecutionSummary, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ExecutionSummary, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<ExecutionSummary> for RemoteExecutionSummary
impl From<ExecutionSummary> for RemoteExecutionSummary
Source§fn from(value: ExecutionSummary) -> RemoteExecutionSummary
fn from(value: ExecutionSummary) -> RemoteExecutionSummary
Converts to this type from the input type.
Source§impl Serialize for ExecutionSummary
impl Serialize for ExecutionSummary
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for ExecutionSummary
impl RefUnwindSafe for ExecutionSummary
impl Send for ExecutionSummary
impl Sync for ExecutionSummary
impl Unpin for ExecutionSummary
impl UnsafeUnpin for ExecutionSummary
impl UnwindSafe for ExecutionSummary
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