pub struct StatCommandOptions {Show 22 fields
pub start: Option<String>,
pub end: Option<String>,
pub group_by: Option<String>,
pub format: Option<String>,
pub codex_home: Option<PathBuf>,
pub sessions_dir: Option<PathBuf>,
pub auth_file: Option<PathBuf>,
pub account_history_file: Option<PathBuf>,
pub today: bool,
pub yesterday: bool,
pub month: bool,
pub all: bool,
pub reasoning_effort: bool,
pub account_id: Option<String>,
pub last: Option<String>,
pub sort: Option<String>,
pub limit: Option<String>,
pub top: Option<String>,
pub detail: bool,
pub full_scan: bool,
pub verbose: bool,
pub json: bool,
}Fields§
§start: Option<String>§end: Option<String>§group_by: Option<String>§format: Option<String>§codex_home: Option<PathBuf>§sessions_dir: Option<PathBuf>§auth_file: Option<PathBuf>§account_history_file: Option<PathBuf>§today: bool§yesterday: bool§month: bool§all: bool§reasoning_effort: bool§account_id: Option<String>§last: Option<String>§sort: Option<String>§limit: Option<String>§top: Option<String>§detail: bool§full_scan: bool§verbose: bool§json: boolTrait Implementations§
Source§impl Clone for StatCommandOptions
impl Clone for StatCommandOptions
Source§fn clone(&self) -> StatCommandOptions
fn clone(&self) -> StatCommandOptions
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 StatCommandOptions
impl Debug for StatCommandOptions
Source§impl Default for StatCommandOptions
impl Default for StatCommandOptions
Source§fn default() -> StatCommandOptions
fn default() -> StatCommandOptions
Returns the “default value” for a type. Read more
Source§impl PartialEq for StatCommandOptions
impl PartialEq for StatCommandOptions
Source§fn eq(&self, other: &StatCommandOptions) -> bool
fn eq(&self, other: &StatCommandOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for StatCommandOptions
impl StructuralPartialEq for StatCommandOptions
Auto Trait Implementations§
impl Freeze for StatCommandOptions
impl RefUnwindSafe for StatCommandOptions
impl Send for StatCommandOptions
impl Sync for StatCommandOptions
impl Unpin for StatCommandOptions
impl UnsafeUnpin for StatCommandOptions
impl UnwindSafe for StatCommandOptions
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