pub struct AfterCycleSnapshot {
pub task_id: String,
pub cycle_index: u32,
pub max_cycles: u32,
pub remaining_cycles: u32,
pub cycle: CycleRecord,
pub messages: Vec<Message>,
pub shared_state: Metadata,
pub cumulative_token_usage: TaskTokenUsage,
pub available_tool_names: Vec<String>,
pub disallowed_tool_names: Vec<String>,
pub native_outcome: NativeCycleOutcome,
}Fields§
§task_id: String§cycle_index: u32§max_cycles: u32§remaining_cycles: u32§cycle: CycleRecord§messages: Vec<Message>§cumulative_token_usage: TaskTokenUsage§available_tool_names: Vec<String>§disallowed_tool_names: Vec<String>§native_outcome: NativeCycleOutcomeImplementations§
Source§impl AfterCycleSnapshot
impl AfterCycleSnapshot
pub fn capture( task_id: impl Into<String>, cycle_index: u32, max_cycles: u32, cycle: &CycleRecord, messages: &[Message], shared_state: &Metadata, cumulative_token_usage: TaskTokenUsage, available_tool_names: Vec<String>, disallowed_tool_names: Vec<String>, native_outcome: NativeCycleOutcome, ) -> Self
Trait Implementations§
Source§impl Clone for AfterCycleSnapshot
impl Clone for AfterCycleSnapshot
Source§fn clone(&self) -> AfterCycleSnapshot
fn clone(&self) -> AfterCycleSnapshot
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 AfterCycleSnapshot
impl Debug for AfterCycleSnapshot
Source§impl<'de> Deserialize<'de> for AfterCycleSnapshot
impl<'de> Deserialize<'de> for AfterCycleSnapshot
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 AfterCycleSnapshot
impl PartialEq for AfterCycleSnapshot
Source§impl Serialize for AfterCycleSnapshot
impl Serialize for AfterCycleSnapshot
impl StructuralPartialEq for AfterCycleSnapshot
Auto Trait Implementations§
impl Freeze for AfterCycleSnapshot
impl RefUnwindSafe for AfterCycleSnapshot
impl Send for AfterCycleSnapshot
impl Sync for AfterCycleSnapshot
impl Unpin for AfterCycleSnapshot
impl UnsafeUnpin for AfterCycleSnapshot
impl UnwindSafe for AfterCycleSnapshot
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.