pub struct PruneReport {
pub bodies_deleted: u64,
pub bytes_freed: u64,
pub rows_affected: u64,
pub rows_deleted: u64,
pub dirs_removed: u64,
}Fields§
§bodies_deleted: u64§bytes_freed: u64§rows_affected: u64§rows_deleted: u64§dirs_removed: u64Trait Implementations§
Source§impl Clone for PruneReport
impl Clone for PruneReport
Source§fn clone(&self) -> PruneReport
fn clone(&self) -> PruneReport
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 PruneReport
impl Debug for PruneReport
Source§impl Default for PruneReport
impl Default for PruneReport
Source§fn default() -> PruneReport
fn default() -> PruneReport
Returns the “default value” for a type. Read more
impl Eq for PruneReport
Source§impl PartialEq for PruneReport
impl PartialEq for PruneReport
Source§fn eq(&self, other: &PruneReport) -> bool
fn eq(&self, other: &PruneReport) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PruneReport
impl Serialize for PruneReport
impl StructuralPartialEq for PruneReport
Auto Trait Implementations§
impl Freeze for PruneReport
impl RefUnwindSafe for PruneReport
impl Send for PruneReport
impl Sync for PruneReport
impl Unpin for PruneReport
impl UnsafeUnpin for PruneReport
impl UnwindSafe for PruneReport
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