pub enum IsCompressed {
No,
Yes,
}Expand description
Whether the decoded instruction was a compressed instruction or not. If it was compressed, only the first two bytes were used. If it was not compressed, all four bytes are consumed.
Variants§
Trait Implementations§
Source§impl Clone for IsCompressed
impl Clone for IsCompressed
Source§fn clone(&self) -> IsCompressed
fn clone(&self) -> IsCompressed
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 IsCompressed
impl Debug for IsCompressed
Source§impl Hash for IsCompressed
impl Hash for IsCompressed
Source§impl PartialEq for IsCompressed
impl PartialEq for IsCompressed
impl Copy for IsCompressed
impl Eq for IsCompressed
impl StructuralPartialEq for IsCompressed
Auto Trait Implementations§
impl Freeze for IsCompressed
impl RefUnwindSafe for IsCompressed
impl Send for IsCompressed
impl Sync for IsCompressed
impl Unpin for IsCompressed
impl UnsafeUnpin for IsCompressed
impl UnwindSafe for IsCompressed
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