Struct lcov_parser::BranchData
[−]
[src]
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
impl Debug for BranchData
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl PartialEq for BranchData
[src]
fn eq(&self, __arg_0: &BranchData) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &BranchData) -> bool
[src]
This method tests for !=
.
impl Clone for BranchData
[src]
fn clone(&self) -> BranchData
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl From<BranchData> for LCOVRecord
[src]
fn from(input: BranchData) -> Self
[src]
Performs the conversion.
impl PartialEq<BranchData> for Branch
[src]
fn eq(&self, data: &BranchData) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl<'a> From<&'a BranchData> for Branch
[src]
fn from(data: &'a BranchData) -> Self
[src]
Performs the conversion.