Skip to main content

CliConfig

Trait CliConfig 

Source
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§

Source

fn config_error(&self) -> Option<&str>

Source

fn apply_shared(&self, _shared: &mut SharedArgs)

Source

fn apply_daily_args(&self, _args: &mut DailyArgs)

Source

fn apply_weekly_args(&self, _args: &mut WeeklyArgs)

Source

fn apply_blocks_args(&self, _args: &mut BlocksArgs)

Source

fn apply_statusline_args(&self, _args: &mut StatuslineArgs)

Source

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".

Implementors§