pub struct InvocationExport {
pub timestamp: String,
pub command: String,
pub subcommand: String,
pub raw_tokens: u64,
pub filtered_tokens: u64,
pub had_plugin: bool,
pub in_scope: bool,
pub reduced: bool,
pub exit_code: i32,
}Expand description
Exported invocation row (user-driven backup / analysis).
Fields§
§timestamp: String§command: String§subcommand: String§raw_tokens: u64§filtered_tokens: u64§had_plugin: bool§in_scope: bool§reduced: bool§exit_code: i32Trait Implementations§
Auto Trait Implementations§
impl Freeze for InvocationExport
impl RefUnwindSafe for InvocationExport
impl Send for InvocationExport
impl Sync for InvocationExport
impl Unpin for InvocationExport
impl UnsafeUnpin for InvocationExport
impl UnwindSafe for InvocationExport
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