pub struct Value {
pub functions: Functions,
pub branches: Branches,
pub lines: Lines,
}
Expand description
A value of a coverage information about a source file.
This struct is used as a value of Sections
.
Fields§
§functions: Functions
Function coverage information in the section.
branches: Branches
Branch coverage information in the section.
lines: Lines
Line coverage information in the section.
Implementations§
Trait Implementations§
impl Eq for Value
impl StructuralPartialEq for Value
Auto Trait Implementations§
impl Freeze for Value
impl RefUnwindSafe for Value
impl Send for Value
impl Sync for Value
impl Unpin for Value
impl UnwindSafe for Value
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