pub struct Did {
pub step: Step,
pub found: usize,
pub left: usize,
pub before: usize,
pub after: usize,
pub untouched: bool,
}Expand description
What one step did to one function.
Fields§
§step: StepWhich step it was.
found: usizeHow many instructions of the kind it answers for were there when it started.
left: usizeHow many were still there when it finished, which is not always zero. See Step::opcodes.
before: usizeHow many instructions the function had before it ran.
after: usizeHow many it had after.
untouched: boolWhether it said it left the function exactly as it was, which only the two that
Step::whole_function names ever say.
Trait Implementations§
impl Copy for Did
impl Eq for Did
impl StructuralPartialEq for Did
Auto Trait Implementations§
impl Freeze for Did
impl RefUnwindSafe for Did
impl Send for Did
impl Sync for Did
impl Unpin for Did
impl UnsafeUnpin for Did
impl UnwindSafe for Did
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