pub enum CleverOperand {
    Register {
        size: u16,
        reg: CleverRegister,
    },
    Indirect {
        size: u16,
        base: CleverRegister,
        scale: u8,
        index: CleverIndex,
    },
    AbsImmediate {
        size: u32,
        val: u64,
    },
    VecImmediate {
        val: u128,
    },
    RelImmediate {
        size: u32,
        val: i64,
    },
}

Variants

Register

Fields

size: u16

Indirect

Fields

size: u16
scale: u8
index: CleverIndex

AbsImmediate

Fields

size: u32
val: u64

VecImmediate

Fields

val: u128

RelImmediate

Fields

size: u32
val: i64

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.