pub struct AgentSession {
pub session_id: Uuid,
pub start_time: DateTime<Utc>,
pub end_time: Option<DateTime<Utc>>,
pub turns: Vec<AgentTurn>,
pub stats: SessionStats,
}Fields§
§session_id: Uuid§start_time: DateTime<Utc>§end_time: Option<DateTime<Utc>>§turns: Vec<AgentTurn>§stats: SessionStatsImplementations§
Source§impl AgentSession
impl AgentSession
Sourcepub fn compute_turn_metrics(&self, max_context: Option<u32>) -> Vec<TurnMetrics>
pub fn compute_turn_metrics(&self, max_context: Option<u32>) -> Vec<TurnMetrics>
Compute presentation metrics for all turns
Trait Implementations§
Source§impl Clone for AgentSession
impl Clone for AgentSession
Source§fn clone(&self) -> AgentSession
fn clone(&self) -> AgentSession
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 AgentSession
impl Debug for AgentSession
Source§impl<'de> Deserialize<'de> for AgentSession
impl<'de> Deserialize<'de> for AgentSession
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 AgentSession
impl RefUnwindSafe for AgentSession
impl Send for AgentSession
impl Sync for AgentSession
impl Unpin for AgentSession
impl UnwindSafe for AgentSession
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