Enum monster::engine::bug::Bug[][src]

pub enum Bug {
    DivisionByZero {
        info: BasicInfo,
    },
    AccessToUnitializedMemory {
        info: BasicInfo,
        instruction: Instruction,
        operands: Vec<Value>,
    },
    AccessToUnalignedAddress {
        info: BasicInfo,
        address: u64,
    },
    AccessToOutOfRangeAddress {
        info: BasicInfo,
    },
    ExitCodeGreaterZero {
        info: BasicInfo,
    },
}

Variants

DivisionByZero

Fields of DivisionByZero

info: BasicInfo
AccessToUnitializedMemory

Fields of AccessToUnitializedMemory

info: BasicInfoinstruction: Instructionoperands: Vec<Value>
AccessToUnalignedAddress

Fields of AccessToUnalignedAddress

info: BasicInfoaddress: u64
AccessToOutOfRangeAddress

Fields of AccessToOutOfRangeAddress

info: BasicInfo
ExitCodeGreaterZero

Fields of ExitCodeGreaterZero

info: BasicInfo

Trait Implementations

impl Clone for Bug[src]

impl Debug for Bug[src]

impl Display for Bug[src]

Auto Trait Implementations

impl RefUnwindSafe for Bug

impl Send for Bug

impl Sync for Bug

impl Unpin for Bug

impl UnwindSafe for Bug

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