pub struct AgentExecution {
pub agent_id: String,
pub session_id: String,
pub files_touched: Vec<String>,
pub tools_used: Vec<String>,
pub steps_taken: u32,
pub cost_cents: u32,
}Expand description
Record of what an agent actually did (Layer 1).
Fields§
§agent_id: String§session_id: String§files_touched: Vec<String>§tools_used: Vec<String>§steps_taken: u32§cost_cents: u32Trait Implementations§
Source§impl Clone for AgentExecution
impl Clone for AgentExecution
Source§fn clone(&self) -> AgentExecution
fn clone(&self) -> AgentExecution
Returns a duplicate of the value. Read more
1.0.0 · 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 AgentExecution
impl Debug for AgentExecution
Source§impl<'de> Deserialize<'de> for AgentExecution
impl<'de> Deserialize<'de> for AgentExecution
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 AgentExecution
impl PartialEq for AgentExecution
Source§impl Serialize for AgentExecution
impl Serialize for AgentExecution
impl Eq for AgentExecution
impl StructuralPartialEq for AgentExecution
Auto Trait Implementations§
impl Freeze for AgentExecution
impl RefUnwindSafe for AgentExecution
impl Send for AgentExecution
impl Sync for AgentExecution
impl Unpin for AgentExecution
impl UnsafeUnpin for AgentExecution
impl UnwindSafe for AgentExecution
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