pub struct RetentionReport {
pub dropped: BTreeMap<String, usize>,
pub tombstoned: Vec<(String, String)>,
}Expand description
What retention did: per-surface counts of entries dropped entirely
(id-less — nothing can reference them) and the entries reduced to
tombstone stubs, as (surface_tag, key).
Fields§
§dropped: BTreeMap<String, usize>§tombstoned: Vec<(String, String)>Trait Implementations§
Source§impl Clone for RetentionReport
impl Clone for RetentionReport
Source§fn clone(&self) -> RetentionReport
fn clone(&self) -> RetentionReport
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 RetentionReport
impl Debug for RetentionReport
Source§impl Default for RetentionReport
impl Default for RetentionReport
Source§fn default() -> RetentionReport
fn default() -> RetentionReport
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RetentionReport
impl<'de> Deserialize<'de> for RetentionReport
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
impl Eq for RetentionReport
Source§impl PartialEq for RetentionReport
impl PartialEq for RetentionReport
Source§impl Serialize for RetentionReport
impl Serialize for RetentionReport
impl StructuralPartialEq for RetentionReport
Auto Trait Implementations§
impl Freeze for RetentionReport
impl RefUnwindSafe for RetentionReport
impl Send for RetentionReport
impl Sync for RetentionReport
impl Unpin for RetentionReport
impl UnsafeUnpin for RetentionReport
impl UnwindSafe for RetentionReport
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