pub enum OperandWidth {
Byte,
Word,
}Expand description
Specifies whether the operand (source or destination) will be used as a byte or a word.
The operand itself is always stored as a word for alignment reasons
Variants§
Trait Implementations§
Source§impl Clone for OperandWidth
impl Clone for OperandWidth
Source§fn clone(&self) -> OperandWidth
fn clone(&self) -> OperandWidth
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 OperandWidth
impl Debug for OperandWidth
Source§impl From<u8> for OperandWidth
impl From<u8> for OperandWidth
Source§impl PartialEq for OperandWidth
impl PartialEq for OperandWidth
impl Copy for OperandWidth
impl StructuralPartialEq for OperandWidth
Auto Trait Implementations§
impl Freeze for OperandWidth
impl RefUnwindSafe for OperandWidth
impl Send for OperandWidth
impl Sync for OperandWidth
impl Unpin for OperandWidth
impl UnwindSafe for OperandWidth
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