pub struct JumpIfBoolSpan {
    pub cond: Expr,
    pub addr: Address,
    pub error_msg: &'static str,
}
Expand description

Components of a conditional jump that depends on a boolean expression.

Fields§

§cond: Expr

The condition to check for falseness.

§addr: Address

The address to jump to.

§error_msg: &'static str

The message to emit if the condition is not boolean.

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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

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.