pub enum CompactionEvent {
Triggered {
context_tokens: usize,
iteration: usize,
},
Started {
message_count: usize,
},
Completed {
result: CompactedContext,
duration_ms: u64,
},
Skipped {
reason: String,
},
Failed {
error: String,
},
}Expand description
CompactionEvent.
Variants§
Trait Implementations§
Source§impl Clone for CompactionEvent
impl Clone for CompactionEvent
Source§fn clone(&self) -> CompactionEvent
fn clone(&self) -> CompactionEvent
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 CompactionEvent
impl Debug for CompactionEvent
Source§impl<'de> Deserialize<'de> for CompactionEvent
impl<'de> Deserialize<'de> for CompactionEvent
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 CompactionEvent
impl RefUnwindSafe for CompactionEvent
impl Send for CompactionEvent
impl Sync for CompactionEvent
impl Unpin for CompactionEvent
impl UnsafeUnpin for CompactionEvent
impl UnwindSafe for CompactionEvent
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