pub enum SInstruction {
StoreByte,
StoreHalf,
StoreWord,
}
Variants§
StoreByte
Format: sb rs2, offset(rs1)
Description: Store 8-bit, values from the low bits of register rs2 to memory.
StoreHalf
Format: sh rs2, offset(rs1)
Description: Store 16-bit, values from the low bits of register rs2 to memory.
StoreWord
Format: sw rs2, offset(rs1)
Description: Store 32-bit, values from the low bits of register rs2 to memory.
Trait Implementations§
Source§impl Clone for SInstruction
impl Clone for SInstruction
Source§fn clone(&self) -> SInstruction
fn clone(&self) -> SInstruction
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 Debug for SInstruction
impl Debug for SInstruction
Source§impl Default for SInstruction
impl Default for SInstruction
Source§fn default() -> SInstruction
fn default() -> SInstruction
Returns the “default value” for a type. Read more
Source§impl Display for SInstruction
impl Display for SInstruction
Source§impl Hash for SInstruction
impl Hash for SInstruction
Source§impl IntoEnumIterator for SInstruction
impl IntoEnumIterator for SInstruction
type Iterator = SInstructionIter
fn iter() -> SInstructionIter ⓘ
Source§impl Ord for SInstruction
impl Ord for SInstruction
Source§fn cmp(&self, other: &SInstruction) -> Ordering
fn cmp(&self, other: &SInstruction) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SInstruction
impl PartialEq for SInstruction
Source§impl PartialOrd for SInstruction
impl PartialOrd for SInstruction
impl Copy for SInstruction
impl Eq for SInstruction
impl StructuralPartialEq for SInstruction
Auto Trait Implementations§
impl Freeze for SInstruction
impl RefUnwindSafe for SInstruction
impl Send for SInstruction
impl Sync for SInstruction
impl Unpin for SInstruction
impl UnwindSafe for SInstruction
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more