pub struct Cleanup {
pub forwarded_loads: usize,
pub removed_stores: usize,
}Expand description
What one cleanup round changed.
Fields§
§forwarded_loads: usizeLoads replaced by the value that was stored.
removed_stores: usizeStores removed because nothing reads them any more.
Implementations§
Trait Implementations§
impl Copy for Cleanup
impl Eq for Cleanup
impl StructuralPartialEq for Cleanup
Auto Trait Implementations§
impl Freeze for Cleanup
impl RefUnwindSafe for Cleanup
impl Send for Cleanup
impl Sync for Cleanup
impl Unpin for Cleanup
impl UnsafeUnpin for Cleanup
impl UnwindSafe for Cleanup
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