pub enum GpSize {
BYTE(usize),
WORD,
DWORD,
QWORD,
}
Variants§
BYTE(usize)
8-bit registers have a shift value, depending on if we’re capturing the high/low bits
WORD
DWORD
QWORD
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GpSize
impl RefUnwindSafe for GpSize
impl Send for GpSize
impl Sync for GpSize
impl Unpin for GpSize
impl UnwindSafe for GpSize
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