pub struct CompactionEntry {
pub id: String,
pub parent_id: Option<String>,
pub timestamp: String,
pub summary: String,
pub first_kept_entry_id: String,
pub tokens_before: u64,
pub tokens_after: u64,
}Expand description
A compaction tree entry (S9.3 compaction type).
Fields§
§id: String§parent_id: Option<String>§timestamp: String§summary: String§first_kept_entry_id: String§tokens_before: u64§tokens_after: u64Trait Implementations§
Source§impl Clone for CompactionEntry
impl Clone for CompactionEntry
Source§fn clone(&self) -> CompactionEntry
fn clone(&self) -> CompactionEntry
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 CompactionEntry
impl Debug for CompactionEntry
Source§impl<'de> Deserialize<'de> for CompactionEntry
impl<'de> Deserialize<'de> for CompactionEntry
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 CompactionEntry
impl RefUnwindSafe for CompactionEntry
impl Send for CompactionEntry
impl Sync for CompactionEntry
impl Unpin for CompactionEntry
impl UnsafeUnpin for CompactionEntry
impl UnwindSafe for CompactionEntry
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