pub struct FnCountChange {
pub name: String,
pub before: usize,
pub after: usize,
}Expand description
Per-fn counter delta — used by Tco and InterpLower reports to
surface which functions a pass actually changed.
Fields§
§name: String§before: usize§after: usizeTrait Implementations§
Source§impl Clone for FnCountChange
impl Clone for FnCountChange
Source§fn clone(&self) -> FnCountChange
fn clone(&self) -> FnCountChange
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 moreAuto Trait Implementations§
impl Freeze for FnCountChange
impl RefUnwindSafe for FnCountChange
impl Send for FnCountChange
impl Sync for FnCountChange
impl Unpin for FnCountChange
impl UnsafeUnpin for FnCountChange
impl UnwindSafe for FnCountChange
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