[][src]Enum haybale_pitchfork::ConstantTimeResultForPath

pub enum ConstantTimeResultForPath {
    IsConstantTime,
    NotConstantTime {
        violation_message: String,
    },
    OtherError {
        error: Error,
        full_message: String,
    },
}

Holds information about the results of a constant-time analysis of a single path.

Variants

IsConstantTime
NotConstantTime

Fields of NotConstantTime

violation_message: String

A String describing the violation found on this path.

OtherError

Fields of OtherError

error: Error

The Error encountered on this path.

full_message: String

The full error message with "rich context" (backtrace, full path, etc)

Trait Implementations

impl Clone for ConstantTimeResultForPath[src]

impl Debug for ConstantTimeResultForPath[src]

Auto Trait Implementations

impl RefUnwindSafe for ConstantTimeResultForPath

impl Send for ConstantTimeResultForPath

impl Sync for ConstantTimeResultForPath

impl Unpin for ConstantTimeResultForPath

impl UnwindSafe for ConstantTimeResultForPath

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> 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.