pub struct HierarchicalConfig {
pub progressive: bool,
pub min_messages: usize,
pub max_messages: usize,
}Expand description
Hierarchical summarizer configuration
Fields§
§progressive: boolEnable progressive compression
min_messages: usizeMinimum messages to trigger summarization
max_messages: usizeMaximum messages before forced summarization
Trait Implementations§
Source§impl Clone for HierarchicalConfig
impl Clone for HierarchicalConfig
Source§fn clone(&self) -> HierarchicalConfig
fn clone(&self) -> HierarchicalConfig
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 HierarchicalConfig
impl Debug for HierarchicalConfig
Auto Trait Implementations§
impl Freeze for HierarchicalConfig
impl RefUnwindSafe for HierarchicalConfig
impl Send for HierarchicalConfig
impl Sync for HierarchicalConfig
impl Unpin for HierarchicalConfig
impl UnsafeUnpin for HierarchicalConfig
impl UnwindSafe for HierarchicalConfig
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