pub struct CoverageDetail {
pub function_name: String,
pub best_match_score: f64,
pub covered: bool,
}Expand description
Coverage detail for a single function.
Fields§
§function_name: String§best_match_score: f64§covered: boolTrait Implementations§
Source§impl Clone for CoverageDetail
impl Clone for CoverageDetail
Source§fn clone(&self) -> CoverageDetail
fn clone(&self) -> CoverageDetail
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CoverageDetail
impl Debug for CoverageDetail
Auto Trait Implementations§
impl Freeze for CoverageDetail
impl RefUnwindSafe for CoverageDetail
impl Send for CoverageDetail
impl Sync for CoverageDetail
impl Unpin for CoverageDetail
impl UnsafeUnpin for CoverageDetail
impl UnwindSafe for CoverageDetail
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