pub struct SessionReviewSession {Show 20 fields
pub source: String,
pub path: String,
pub matched_by: Vec<String>,
pub modified_unix_secs: Option<u64>,
pub prompt_target_count: usize,
pub command_groups: usize,
pub file_groups: usize,
pub symbol_groups: usize,
pub failure_groups: usize,
pub runtime_event_groups: usize,
pub restart_churn_groups: usize,
pub closeout_groups: usize,
pub usage_samples: usize,
pub prompt_tokens: u64,
pub cached_input_tokens: u64,
pub cache_creation_input_tokens: u64,
pub output_tokens: u64,
pub reasoning_output_tokens: u64,
pub total_tokens: u64,
pub largest_turn_total_tokens: u64,
}Fields§
§source: String§path: String§matched_by: Vec<String>§modified_unix_secs: Option<u64>§prompt_target_count: usize§command_groups: usize§file_groups: usize§symbol_groups: usize§failure_groups: usize§runtime_event_groups: usize§restart_churn_groups: usize§closeout_groups: usize§usage_samples: usize§prompt_tokens: u64§cached_input_tokens: u64§cache_creation_input_tokens: u64§output_tokens: u64§reasoning_output_tokens: u64§total_tokens: u64§largest_turn_total_tokens: u64Trait Implementations§
Source§impl Clone for SessionReviewSession
impl Clone for SessionReviewSession
Source§fn clone(&self) -> SessionReviewSession
fn clone(&self) -> SessionReviewSession
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 SessionReviewSession
impl Debug for SessionReviewSession
Source§impl Serialize for SessionReviewSession
impl Serialize for SessionReviewSession
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 SessionReviewSession
impl RefUnwindSafe for SessionReviewSession
impl Send for SessionReviewSession
impl Sync for SessionReviewSession
impl Unpin for SessionReviewSession
impl UnsafeUnpin for SessionReviewSession
impl UnwindSafe for SessionReviewSession
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