pub trait RolloutConfigView {
// Required methods
fn codex_home(&self) -> &Path;
fn sqlite_home(&self) -> &Path;
fn cwd(&self) -> &Path;
fn model_provider_id(&self) -> &str;
fn generate_memories(&self) -> bool;
}Required Methods§
fn codex_home(&self) -> &Path
fn sqlite_home(&self) -> &Path
fn cwd(&self) -> &Path
fn model_provider_id(&self) -> &str
fn generate_memories(&self) -> bool
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".