pub struct CliConfig {
pub base_url: String,
pub default_model: String,
pub data_dir: Option<PathBuf>,
pub integrity_key_path: Option<PathBuf>,
pub require_integrity_key: bool,
pub ephemeral: bool,
pub max_graphs: usize,
}Expand description
Parsed CLI configuration.
Fields§
§base_url: String§default_model: String§data_dir: Option<PathBuf>§integrity_key_path: Option<PathBuf>§require_integrity_key: bool§ephemeral: bool§max_graphs: usizeTrait Implementations§
Auto Trait Implementations§
impl Freeze for CliConfig
impl RefUnwindSafe for CliConfig
impl Send for CliConfig
impl Sync for CliConfig
impl Unpin for CliConfig
impl UnsafeUnpin for CliConfig
impl UnwindSafe for CliConfig
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