pub struct AutoCaptureConfig {
pub enabled: bool,
pub messages: bool,
pub tools: bool,
pub files: bool,
pub checkpoint_interval: u32,
pub pressure_threshold: f32,
}Fields§
§enabled: boolEnable auto-capture
messages: boolCapture messages
tools: boolCapture tool calls
files: boolCapture file operations
checkpoint_interval: u32Checkpoint interval (blocks)
pressure_threshold: f32Context pressure threshold (0.0 - 1.0)
Trait Implementations§
Source§impl Clone for AutoCaptureConfig
impl Clone for AutoCaptureConfig
Source§fn clone(&self) -> AutoCaptureConfig
fn clone(&self) -> AutoCaptureConfig
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 AutoCaptureConfig
impl Debug for AutoCaptureConfig
Source§impl<'de> Deserialize<'de> for AutoCaptureConfig
impl<'de> Deserialize<'de> for AutoCaptureConfig
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 AutoCaptureConfig
impl RefUnwindSafe for AutoCaptureConfig
impl Send for AutoCaptureConfig
impl Sync for AutoCaptureConfig
impl Unpin for AutoCaptureConfig
impl UnsafeUnpin for AutoCaptureConfig
impl UnwindSafe for AutoCaptureConfig
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