[][src]Struct coveralls_api::BranchData

pub struct BranchData {
    pub line_number: usize,
    pub block_name: usize,
    pub branch_number: usize,
    pub hits: usize,
}

Representation of branch data

Fields

line_number: usizeblock_name: usizebranch_number: usizehits: usize

Trait Implementations

impl Clone for BranchData[src]

impl Copy for BranchData[src]

impl Debug for BranchData[src]

impl Default for BranchData[src]

impl<'de> Deserialize<'de> for BranchData[src]

impl Eq for BranchData[src]

impl Hash for BranchData[src]

impl Ord for BranchData[src]

impl PartialEq<BranchData> for BranchData[src]

impl PartialOrd<BranchData> for BranchData[src]

impl Serialize for BranchData[src]

impl StructuralEq for BranchData[src]

impl StructuralPartialEq for BranchData[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.