pub struct CounterId {
private: u32,
}
Expand description
ID of a coverage counter. Values ascend from 0.
Note that LLVM handles counter IDs as uint32_t
, so there is no need
to use a larger representation on the Rust side.
Fields§
§private: u32
Auto Trait Implementations§
impl RefUnwindSafe for CounterId
impl Send for CounterId
impl Sync for CounterId
impl Unpin for CounterId
impl UnwindSafe for CounterId
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