pub struct RuntimeConfig {
pub model: String,
pub reasoning: String,
pub allow_dangerous_enabled_raw: String,
pub secret_dir: Option<PathBuf>,
pub auth_file: Option<PathBuf>,
pub secret_cache_dir: Option<PathBuf>,
pub starship_enabled: String,
pub auto_refresh_enabled: String,
pub auto_refresh_min_days: String,
}Fields§
§model: String§reasoning: String§allow_dangerous_enabled_raw: String§secret_dir: Option<PathBuf>§auth_file: Option<PathBuf>§secret_cache_dir: Option<PathBuf>§starship_enabled: String§auto_refresh_enabled: String§auto_refresh_min_days: StringTrait Implementations§
Source§impl Clone for RuntimeConfig
impl Clone for RuntimeConfig
Source§fn clone(&self) -> RuntimeConfig
fn clone(&self) -> RuntimeConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RuntimeConfig
impl Debug for RuntimeConfig
Source§impl PartialEq for RuntimeConfig
impl PartialEq for RuntimeConfig
impl Eq for RuntimeConfig
impl StructuralPartialEq for RuntimeConfig
Auto Trait Implementations§
impl Freeze for RuntimeConfig
impl RefUnwindSafe for RuntimeConfig
impl Send for RuntimeConfig
impl Sync for RuntimeConfig
impl Unpin for RuntimeConfig
impl UnsafeUnpin for RuntimeConfig
impl UnwindSafe for RuntimeConfig
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