Skip to main content

ParsedInstruction32

Enum ParsedInstruction32 

Source
pub enum ParsedInstruction32 {
Show 39 variants add(add), sub(sub), xor(xor), or(or), and(and), sll(sll), srl(srl), sra(sra), slt(slt), sltu(sltu), addi(addi), xori(xori), ori(ori), andi(andi), slli(slli), srli(srli), srai(srai), slti(slti), sltiu(sltiu), lb(lb), lh(lh), lw(lw), lbu(lbu), lhu(lhu), sb(sb), sh(sh), sw(sw), beq(beq), bne(bne), blt(blt), bge(bge), bltu(bltu), bgeu(bgeu), jal(jal), jalr(jalr), lui(lui), auipc(auipc), ecall(ecall), ebreak(ebreak),
}

Variants§

§

add(add)

§

sub(sub)

§

xor(xor)

§

or(or)

§

and(and)

§

sll(sll)

§

srl(srl)

§

sra(sra)

§

slt(slt)

§

sltu(sltu)

§

addi(addi)

§

xori(xori)

§

ori(ori)

§

andi(andi)

§

slli(slli)

§

srli(srli)

§

srai(srai)

§

slti(slti)

§

sltiu(sltiu)

§

lb(lb)

§

lh(lh)

§

lw(lw)

§

lbu(lbu)

§

lhu(lhu)

§

sb(sb)

§

sh(sh)

§

sw(sw)

§

beq(beq)

§

bne(bne)

§

blt(blt)

§

bge(bge)

§

bltu(bltu)

§

bgeu(bgeu)

§

jal(jal)

§

jalr(jalr)

§

lui(lui)

§

auipc(auipc)

§

ecall(ecall)

§

ebreak(ebreak)

Trait Implementations§

Source§

impl Debug for ParsedInstruction32

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for ParsedInstruction32

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for ParsedInstruction32

Source§

fn eq(&self, other: &ParsedInstruction32) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for ParsedInstruction32

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.