pub struct LogConfig {
pub log_persistence: String,
pub log_persistence_path: String,
pub log_persistence_max_entries: usize,
pub log_tool_io: String,
pub log_tool_io_truncate_bytes: usize,
pub log_tool_io_denylist: Vec<String>,
}Expand description
Minimal observability config shape used by the writer + tool-io
capturer. Mirrors the relevant [observability] fields of
zeroclaw_config::schema::ObservabilityConfig.
Fields§
§log_persistence: String§log_persistence_path: String§log_persistence_max_entries: usize§log_tool_io: String§log_tool_io_truncate_bytes: usize§log_tool_io_denylist: Vec<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for LogConfig
impl RefUnwindSafe for LogConfig
impl Send for LogConfig
impl Sync for LogConfig
impl Unpin for LogConfig
impl UnsafeUnpin for LogConfig
impl UnwindSafe for LogConfig
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