pub struct Config {
pub general: GeneralConfig,
pub llm: LlmConfig,
pub storage: StorageConfig,
pub tools: ToolsConfig,
pub security: SecurityConfig,
pub telemetry: TelemetryConfig,
}Fields§
§general: GeneralConfig§llm: LlmConfig§storage: StorageConfig§tools: ToolsConfig§security: SecurityConfig§telemetry: TelemetryConfigImplementations§
Source§impl Config
impl Config
pub fn load_from_file(path: impl AsRef<Path>) -> Result<Self>
pub fn from_toml(content: &str) -> Result<Self>
pub fn from_json(content: &str) -> Result<Self>
pub fn load_default() -> Result<Self>
pub fn merge_env(self) -> Self
pub fn to_toml(&self) -> Result<String>
pub fn to_json(&self) -> Result<String>
pub fn save_to_file(&self, path: impl AsRef<Path>) -> Result<()>
pub fn data_dir(&self) -> PathBuf
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Config
impl<'de> Deserialize<'de> for Config
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Config
impl RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnwindSafe for Config
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