pub struct ChangeStats {
pub total_changes: usize,
pub domains_affected: usize,
pub predicates_affected: usize,
pub variables_affected: usize,
pub changes_by_type: HashMap<String, usize>,
}Expand description
Statistics about recorded changes
Fields§
§total_changes: usize§domains_affected: usize§predicates_affected: usize§variables_affected: usize§changes_by_type: HashMap<String, usize>Trait Implementations§
Source§impl Clone for ChangeStats
impl Clone for ChangeStats
Source§fn clone(&self) -> ChangeStats
fn clone(&self) -> ChangeStats
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 moreAuto Trait Implementations§
impl Freeze for ChangeStats
impl RefUnwindSafe for ChangeStats
impl Send for ChangeStats
impl Sync for ChangeStats
impl Unpin for ChangeStats
impl UnwindSafe for ChangeStats
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