pub enum LoadKind {
SignedByte,
UnsignedByte,
SignedHalf,
UnsignedHalf,
SignedWord,
UnsignedWord,
Double,
}Expand description
Width and signedness of an aligned load.
Variants§
SignedByte
LB — signed byte.
UnsignedByte
LBU — unsigned byte.
SignedHalf
LH — signed halfword.
UnsignedHalf
LHU — unsigned halfword.
SignedWord
LW — signed word (sign-extended into the 64-bit register).
UnsignedWord
LWU — unsigned word (zero-extended).
Double
LD — doubleword.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for LoadKind
impl<'de> Deserialize<'de> for LoadKind
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Copy for LoadKind
impl Eq for LoadKind
impl StructuralPartialEq for LoadKind
Auto Trait Implementations§
impl Freeze for LoadKind
impl RefUnwindSafe for LoadKind
impl Send for LoadKind
impl Sync for LoadKind
impl Unpin for LoadKind
impl UnsafeUnpin for LoadKind
impl UnwindSafe for LoadKind
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