#[repr(u32)]
pub enum Special {
NoOp,
Return,
Xa,
Xb,
}
Expand description
Special reasons for jumping (bits 6..8)
Variants
NoOp
Don’t jump at all (no-op)
Return
Function return
Xa
Currently unused
Xb
Currently unused
Implementations
Trait Implementations
sourceimpl From<Instruction> for Special
impl From<Instruction> for Special
sourcefn from(instruction: Instruction) -> Self
fn from(instruction: Instruction) -> Self
Converts to this type from the input type.
sourceimpl From<Special> for Instruction
impl From<Special> for Instruction
sourcefn from(special: Special) -> Instruction
fn from(special: Special) -> Instruction
Converts to this type from the input type.
impl Copy for Special
Auto Trait Implementations
impl RefUnwindSafe for Special
impl Send for Special
impl Sync for Special
impl Unpin for Special
impl UnwindSafe for Special
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more