pub struct OpenClawConfig {
pub agents: AgentsConfig,
}Expand description
Parsed OpenClaw configuration (from ~/.openclaw/openclaw.json). Supports JSON5 format (comments, trailing commas).
Fields§
§agents: AgentsConfigTrait Implementations§
Source§impl Clone for OpenClawConfig
impl Clone for OpenClawConfig
Source§fn clone(&self) -> OpenClawConfig
fn clone(&self) -> OpenClawConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 OpenClawConfig
impl Debug for OpenClawConfig
Source§impl<'de> Deserialize<'de> for OpenClawConfig
impl<'de> Deserialize<'de> for OpenClawConfig
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 OpenClawConfig
impl RefUnwindSafe for OpenClawConfig
impl Send for OpenClawConfig
impl Sync for OpenClawConfig
impl Unpin for OpenClawConfig
impl UnsafeUnpin for OpenClawConfig
impl UnwindSafe for OpenClawConfig
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