pub struct CatalogStats {
pub total: usize,
pub added: usize,
pub changed: usize,
pub unchanged: usize,
pub obsolete_marked: usize,
pub obsolete_removed: usize,
}Expand description
Basic counters describing an update operation.
Fields§
§total: usizeTotal messages in the final catalog.
added: usizeMessages added during the update.
changed: usizeExisting messages whose rendered representation changed.
unchanged: usizeExisting messages preserved without changes.
obsolete_marked: usizeMessages newly marked obsolete.
obsolete_removed: usizeMessages removed because the obsolete strategy deleted them.
Trait Implementations§
Source§impl Clone for CatalogStats
impl Clone for CatalogStats
Source§fn clone(&self) -> CatalogStats
fn clone(&self) -> CatalogStats
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 CatalogStats
impl Debug for CatalogStats
Source§impl Default for CatalogStats
impl Default for CatalogStats
Source§fn default() -> CatalogStats
fn default() -> CatalogStats
Returns the “default value” for a type. Read more
Source§impl PartialEq for CatalogStats
impl PartialEq for CatalogStats
impl Eq for CatalogStats
impl StructuralPartialEq for CatalogStats
Auto Trait Implementations§
impl Freeze for CatalogStats
impl RefUnwindSafe for CatalogStats
impl Send for CatalogStats
impl Sync for CatalogStats
impl Unpin for CatalogStats
impl UnsafeUnpin for CatalogStats
impl UnwindSafe for CatalogStats
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