Enum rdcl_aoc_helpers::machine::hook::HookResult[][src]

pub enum HookResult {
    Proceed,
    Skip,
    Goto(i64),
    Abort,
}
Expand description

Allows the hook to influence the rest of the execution of an instruction.

Variants

Proceed

Proceed normally.

Skip

Skip the instruction that was about to be executed.

Goto(i64)

Go to a specific instruction.

Abort

Abort the entire program.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.