[][src]Enum tarp::traces::CoverageStat

pub enum CoverageStat {
    Line(u64),
    Branch(LogicState),
    Condition(Vec<LogicState>),
}

Shows what type of coverage data is being collected by a given trace

Variants

Line(u64)

Line coverage data (whether line has been hit)

Branch(LogicState)

Branch coverage data (whether branch has been true and false

Condition(Vec<LogicState>)

Condition coverage data (each boolean subcondition true and false)

Trait Implementations

impl Add<CoverageStat> for CoverageStat[src]

type Output = CoverageStat

The resulting type after applying the + operator.

impl Clone for CoverageStat[src]

impl Debug for CoverageStat[src]

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

impl Display for CoverageStat[src]

impl Eq for CoverageStat[src]

impl Hash for CoverageStat[src]

impl PartialEq<CoverageStat> for CoverageStat[src]

impl PartialOrd<CoverageStat> for CoverageStat[src]

impl Serialize for CoverageStat[src]

impl StructuralEq for CoverageStat[src]

impl StructuralPartialEq for CoverageStat[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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,