Struct coveralls_api::BranchData
source · 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§fn eq(&self, other: &BranchData) -> bool
fn eq(&self, other: &BranchData) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for BranchData
impl PartialOrd for BranchData
source§fn partial_cmp(&self, other: &BranchData) -> Option<Ordering>
fn partial_cmp(&self, other: &BranchData) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl Serialize for BranchData
impl Serialize for BranchData
impl Copy for BranchData
impl Eq for BranchData
impl StructuralEq for BranchData
impl StructuralPartialEq for BranchData
Auto Trait Implementations§
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
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.