pub trait CliConfig {
// Provided methods
fn config_error(&self) -> Option<&str> { ... }
fn apply_shared(&self, _shared: &mut SharedArgs) { ... }
fn apply_daily_args(&self, _args: &mut DailyArgs) { ... }
fn apply_weekly_args(&self, _args: &mut WeeklyArgs) { ... }
fn apply_blocks_args(&self, _args: &mut BlocksArgs) { ... }
fn apply_statusline_args(&self, _args: &mut StatuslineArgs) { ... }
fn apply_agent_args(
&self,
_codex_speed: &mut CodexSpeed,
_pi_path: Option<&mut Option<String>>,
_open_claw_path: Option<&mut Option<String>>,
) { ... }
}Provided Methods§
fn config_error(&self) -> Option<&str>
fn apply_daily_args(&self, _args: &mut DailyArgs)
fn apply_weekly_args(&self, _args: &mut WeeklyArgs)
fn apply_blocks_args(&self, _args: &mut BlocksArgs)
fn apply_statusline_args(&self, _args: &mut StatuslineArgs)
fn apply_agent_args( &self, _codex_speed: &mut CodexSpeed, _pi_path: Option<&mut Option<String>>, _open_claw_path: Option<&mut Option<String>>, )
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".