pub struct BranchData {
pub line_number: usize,
pub block_name: usize,
pub branch_number: usize,
pub hits: usize,
}
Expand description
Representation of branch data
Fields§
§line_number: usize
§block_name: usize
§branch_number: usize
§hits: usize
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 Default for BranchData
impl Default for BranchData
Source§fn default() -> BranchData
fn default() -> BranchData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BranchData
impl<'de> Deserialize<'de> for BranchData
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for BranchData
impl Hash for BranchData
Source§impl Ord for BranchData
impl Ord for BranchData
Source§fn cmp(&self, other: &BranchData) -> Ordering
fn cmp(&self, other: &BranchData) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for BranchData
impl PartialEq for BranchData
Source§impl PartialOrd for BranchData
impl PartialOrd for BranchData
Source§impl Serialize for BranchData
impl Serialize for BranchData
impl Copy for BranchData
impl Eq 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.