pub trait AsSource {
    fn as_first(self) -> Instruction;
    fn as_second(self) -> Instruction;
}
Expand description

Ability for a type to be either of the source bytes in an instruction

Required Methods

Implementations on Foreign Types

Implementors