pub struct BranchData {
pub line: u32,
pub block: u32,
pub branch: u32,
pub taken: u32,
}
Fields§
§line: u32
§block: u32
§branch: u32
§taken: u32
Trait Implementations§
Source§impl Clone for BranchData
impl Clone for BranchData
Source§fn clone(&self) -> BranchData
fn clone(&self) -> BranchData
Returns a copy 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 BranchData
impl Debug for BranchData
Source§impl<'a> From<&'a BranchData> for Branch
impl<'a> From<&'a BranchData> for Branch
Source§fn from(data: &'a BranchData) -> Self
fn from(data: &'a BranchData) -> Self
Converts to this type from the input type.
Source§impl From<BranchData> for LCOVRecord
impl From<BranchData> for LCOVRecord
Source§fn from(input: BranchData) -> Self
fn from(input: BranchData) -> Self
Converts to this type from the input type.
Source§impl PartialEq<BranchData> for Branch
impl PartialEq<BranchData> for Branch
Source§impl PartialEq for BranchData
impl PartialEq for BranchData
impl StructuralPartialEq for BranchData
Auto Trait Implementations§
impl Freeze for BranchData
impl RefUnwindSafe for BranchData
impl Send for BranchData
impl Sync for BranchData
impl Unpin for BranchData
impl UnwindSafe for BranchData
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