pub struct CountedRegion {
pub execution_count: usize,
pub false_execution_count: usize,
pub folded: bool,
pub region: CounterMappingRegion,
}Expand description
Associates a source range with a specific counter. The equivalent llvm type is CountedRegion.
Fields§
§execution_count: usize§false_execution_count: usize§folded: bool§region: CounterMappingRegionAuto Trait Implementations§
impl Freeze for CountedRegion
impl RefUnwindSafe for CountedRegion
impl Send for CountedRegion
impl Sync for CountedRegion
impl Unpin for CountedRegion
impl UnwindSafe for CountedRegion
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