pub enum BZbc64ExtInstruction<Reg> {
Zba(Zba64ExtInstruction<Reg>),
Zbb(Zbb64ExtInstruction<Reg>),
Zbc(Zbc64ExtInstruction<Reg>),
Zbs(Zbs64ExtInstruction<Reg>),
}Expand description
RISC-V B (Zba + Zbb + Zbs) + Zbc instruction
Variants§
Zba(Zba64ExtInstruction<Reg>)
Zbb(Zbb64ExtInstruction<Reg>)
Zbc(Zbc64ExtInstruction<Reg>)
Zbs(Zbs64ExtInstruction<Reg>)
Trait Implementations§
Source§impl<Reg: Clone> Clone for BZbc64ExtInstruction<Reg>
impl<Reg: Clone> Clone for BZbc64ExtInstruction<Reg>
Source§fn clone(&self) -> BZbc64ExtInstruction<Reg>
fn clone(&self) -> BZbc64ExtInstruction<Reg>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<Reg: Debug> Debug for BZbc64ExtInstruction<Reg>
impl<Reg: Debug> Debug for BZbc64ExtInstruction<Reg>
Source§impl<Reg> Display for BZbc64ExtInstruction<Reg>where
Reg: Display,
impl<Reg> Display for BZbc64ExtInstruction<Reg>where
Reg: Display,
Source§impl<Reg> Instruction for BZbc64ExtInstruction<Reg>
impl<Reg> Instruction for BZbc64ExtInstruction<Reg>
Source§type Base = Rv64Instruction<Reg>
type Base = Rv64Instruction<Reg>
Lower-level instruction like
Rv64InstructionSource§fn try_decode(instruction: u32) -> Option<Self>
fn try_decode(instruction: u32) -> Option<Self>
Try to decode a single valid instruction
Source§impl<Reg: PartialEq> PartialEq for BZbc64ExtInstruction<Reg>
impl<Reg: PartialEq> PartialEq for BZbc64ExtInstruction<Reg>
impl<Reg: Copy> Copy for BZbc64ExtInstruction<Reg>
impl<Reg: Eq> Eq for BZbc64ExtInstruction<Reg>
impl<Reg> StructuralPartialEq for BZbc64ExtInstruction<Reg>
Auto Trait Implementations§
impl<Reg> Freeze for BZbc64ExtInstruction<Reg>where
Reg: Freeze,
impl<Reg> RefUnwindSafe for BZbc64ExtInstruction<Reg>where
Reg: RefUnwindSafe,
impl<Reg> Send for BZbc64ExtInstruction<Reg>where
Reg: Send,
impl<Reg> Sync for BZbc64ExtInstruction<Reg>where
Reg: Sync,
impl<Reg> Unpin for BZbc64ExtInstruction<Reg>where
Reg: Unpin,
impl<Reg> UnwindSafe for BZbc64ExtInstruction<Reg>where
Reg: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more