pub struct AutoCompactConfig {
pub enabled: bool,
pub threshold: Option<u64>,
}Expand description
Auto-compaction configuration.
Fields§
§enabled: boolWhether auto-compaction is enabled.
threshold: Option<u64>Token threshold for triggering compaction.
Trait Implementations§
Source§impl Clone for AutoCompactConfig
impl Clone for AutoCompactConfig
Source§fn clone(&self) -> AutoCompactConfig
fn clone(&self) -> AutoCompactConfig
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 AutoCompactConfig
impl Debug for AutoCompactConfig
Source§impl<'de> Deserialize<'de> for AutoCompactConfig
impl<'de> Deserialize<'de> for AutoCompactConfig
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 AutoCompactConfig
impl RefUnwindSafe for AutoCompactConfig
impl Send for AutoCompactConfig
impl Sync for AutoCompactConfig
impl Unpin for AutoCompactConfig
impl UnwindSafe for AutoCompactConfig
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