pub struct CppRuntimeCoverage;Implementations§
Source§impl CppRuntimeCoverage
impl CppRuntimeCoverage
pub fn new() -> Self
Sourcepub fn attach_and_collect(
&self,
pid: u32,
) -> Result<RuntimeCoverageResult, String>
pub fn attach_and_collect( &self, pid: u32, ) -> Result<RuntimeCoverageResult, String>
Attach to a running C++ process and collect coverage REQUIRES: Process must be built with -fprofile-arcs -ftest-coverage
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CppRuntimeCoverage
impl RefUnwindSafe for CppRuntimeCoverage
impl Send for CppRuntimeCoverage
impl Sync for CppRuntimeCoverage
impl Unpin for CppRuntimeCoverage
impl UnwindSafe for CppRuntimeCoverage
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