pub struct ClaudeTranscriptImportSummary {Show 18 fields
pub session_id: String,
pub project: String,
pub model: Option<String>,
pub git_branch: Option<String>,
pub total_input_tokens: i64,
pub total_output_tokens: i64,
pub total_cache_read_tokens: i64,
pub total_cache_create_tokens: i64,
pub prompt_count: i64,
pub tool_call_count: i64,
pub file_access_count: i64,
pub file_write_count: i64,
pub compaction_count: i64,
pub imported_prompts: i64,
pub imported_tool_calls: i64,
pub imported_file_accesses: i64,
pub imported_file_writes: i64,
pub imported_offset: u64,
}Fields§
§session_id: String§project: String§model: Option<String>§git_branch: Option<String>§total_input_tokens: i64§total_output_tokens: i64§total_cache_read_tokens: i64§total_cache_create_tokens: i64§prompt_count: i64§tool_call_count: i64§file_access_count: i64§file_write_count: i64§compaction_count: i64§imported_prompts: i64§imported_tool_calls: i64§imported_file_accesses: i64§imported_file_writes: i64§imported_offset: u64Trait Implementations§
Source§impl Clone for ClaudeTranscriptImportSummary
impl Clone for ClaudeTranscriptImportSummary
Source§fn clone(&self) -> ClaudeTranscriptImportSummary
fn clone(&self) -> ClaudeTranscriptImportSummary
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 moreAuto Trait Implementations§
impl Freeze for ClaudeTranscriptImportSummary
impl RefUnwindSafe for ClaudeTranscriptImportSummary
impl Send for ClaudeTranscriptImportSummary
impl Sync for ClaudeTranscriptImportSummary
impl Unpin for ClaudeTranscriptImportSummary
impl UnsafeUnpin for ClaudeTranscriptImportSummary
impl UnwindSafe for ClaudeTranscriptImportSummary
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,
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 more