pub struct Args {
pub cc: bool,
pub codex: bool,
pub tier: Option<Tier>,
pub end: String,
pub five_hour: bool,
pub week: bool,
pub dry_run: bool,
pub yes: bool,
pub json: bool,
pub no_color: bool,
pub verbose: u8,
}Expand description
Anonymous community analytics for AI-subscription rate-limit data.
Fields§
§cc: boolUse Claude Code session logs at ~/.claude/projects/.
codex: boolUse Codex session logs at $CODEX_HOME/sessions/ (default ~/.codex).
tier: Option<Tier>Subscription tier. Auto-persists to ~/.config/bloclawd/config.toml. On absence, the CLI loads the value from the config file.
end: StringWindow-close in local time. Accepted forms: HH:MM (today, local TZ) YYYY-MM-DD HH:MM (local TZ) YYYY-MM-DDTHH:MM:SS (local TZ)
five_hour: bool5-hour window: [end - 5h, end].
week: bool7-day window: [end - 7d, end].
dry_run: boolPrint the canonical payload bytes that would be submitted; do not POST.
yes: boolSkip the [y/N] confirmation prompt before submission.
json: boolEmit a single machine-readable JSON object on stdout instead of the human view.
no_color: boolDisable ANSI colors and Unicode box characters; force ASCII-only output.
verbose: u8Increase verbosity (repeatable; debug-only flags out of scope for v1).
Implementations§
Trait Implementations§
Source§impl Args for Args
impl Args for Args
Source§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
Source§fn augment_args_for_update<'b>(__clap_app: Command) -> Command
fn augment_args_for_update<'b>(__clap_app: Command) -> Command
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§impl CommandFactory for Args
impl CommandFactory for Args
Source§impl FromArgMatches for Args
impl FromArgMatches for Args
Source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
Source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches,
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>
Source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>
ArgMatches to self.Source§fn update_from_arg_matches_mut(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
ArgMatches to self.