pub struct CleanupAnalysis {
pub analyzed_at: DateTime<Utc>,
pub total_files: usize,
pub candidates: Vec<CleanupCandidate>,
pub potential_savings_bytes: u64,
}Expand description
Analysis of cleanup candidates.
Fields§
§analyzed_at: DateTime<Utc>When the analysis was performed
total_files: usizeTotal files analyzed
candidates: Vec<CleanupCandidate>Cleanup candidates
potential_savings_bytes: u64Potential space savings in bytes
Trait Implementations§
Source§impl Clone for CleanupAnalysis
impl Clone for CleanupAnalysis
Source§fn clone(&self) -> CleanupAnalysis
fn clone(&self) -> CleanupAnalysis
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 CleanupAnalysis
impl Debug for CleanupAnalysis
Source§impl<'de> Deserialize<'de> for CleanupAnalysis
impl<'de> Deserialize<'de> for CleanupAnalysis
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 CleanupAnalysis
impl RefUnwindSafe for CleanupAnalysis
impl Send for CleanupAnalysis
impl Sync for CleanupAnalysis
impl Unpin for CleanupAnalysis
impl UnwindSafe for CleanupAnalysis
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