pub struct SweepReport {
pub soft_deleted: usize,
pub hard_deleted: usize,
pub archived: usize,
pub tombstoned: usize,
}Fields§
§soft_deleted: usize§hard_deleted: usize§archived: usizeSessions handed to super::retention::ArchiveSink::archive
because they crossed min_age_before_archive_seconds.
tombstoned: usizeHard-deleted sessions whose final state was emitted as a
super::retention::Tombstone to the archive sink.
Trait Implementations§
Source§impl Clone for SweepReport
impl Clone for SweepReport
Source§fn clone(&self) -> SweepReport
fn clone(&self) -> SweepReport
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 SweepReport
impl Debug for SweepReport
Source§impl Default for SweepReport
impl Default for SweepReport
Source§fn default() -> SweepReport
fn default() -> SweepReport
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SweepReport
impl<'de> Deserialize<'de> for SweepReport
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 SweepReport
Source§impl PartialEq for SweepReport
impl PartialEq for SweepReport
Source§impl Serialize for SweepReport
impl Serialize for SweepReport
impl StructuralPartialEq for SweepReport
Auto Trait Implementations§
impl Freeze for SweepReport
impl RefUnwindSafe for SweepReport
impl Send for SweepReport
impl Sync for SweepReport
impl Unpin for SweepReport
impl UnsafeUnpin for SweepReport
impl UnwindSafe for SweepReport
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