pub struct ProvenancePurgeReport {
pub events_deleted: u64,
pub events_preserved: u64,
pub oldest_remaining: Option<i64>,
}Expand description
Report from a provenance event purge operation.
Fields§
§events_deleted: u64§events_preserved: u64§oldest_remaining: Option<i64>Trait Implementations§
Source§impl Clone for ProvenancePurgeReport
impl Clone for ProvenancePurgeReport
Source§fn clone(&self) -> ProvenancePurgeReport
fn clone(&self) -> ProvenancePurgeReport
Returns a duplicate of the value. Read more
1.0.0 · 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 ProvenancePurgeReport
impl Debug for ProvenancePurgeReport
Auto Trait Implementations§
impl Freeze for ProvenancePurgeReport
impl RefUnwindSafe for ProvenancePurgeReport
impl Send for ProvenancePurgeReport
impl Sync for ProvenancePurgeReport
impl Unpin for ProvenancePurgeReport
impl UnsafeUnpin for ProvenancePurgeReport
impl UnwindSafe for ProvenancePurgeReport
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