pub struct Recording<'a> {
pub fired: &'a mut Fired,
pub pressure: &'a mut Pressure,
pub lowerings: &'a mut Lowerings,
}Expand description
Somewhere to put what a compilation did along the way, for the flags that ask.
One of these rather than three parameters, because they are one thing: a caller either wants the measurements or does not, and a caller that does wants the same three to cover every function of every file on the command line.
Fields§
§fired: &'a mut FiredWhich lowering rules fired, for -Zrule-coverage.
pressure: &'a mut PressureWhat the allocator had to put on the stack, for -Zregister-pressure.
lowerings: &'a mut LoweringsWhat the pre-selection lowering group did, for -Zlowering.
Trait Implementations§
Auto Trait Implementations§
impl<'a> !UnwindSafe for Recording<'a>
impl<'a> Freeze for Recording<'a>
impl<'a> RefUnwindSafe for Recording<'a>
impl<'a> Send for Recording<'a>
impl<'a> Sync for Recording<'a>
impl<'a> Unpin for Recording<'a>
impl<'a> UnsafeUnpin for Recording<'a>
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