pub enum Skipping {
None,
CallMachineSubroutine,
Unknown,
AllUnsupported,
}Expand description
Skipping behavior for the processor.
Unsupported instructions that are not skipped will lead to an error being returned.
Variants§
Implementations§
Source§impl Skipping
impl Skipping
pub fn should_skip_call_machine_subroutine(self) -> bool
pub fn should_skip_unknown(self) -> bool
Trait Implementations§
impl Copy for Skipping
impl Eq for Skipping
impl StructuralPartialEq for Skipping
Auto Trait Implementations§
impl Freeze for Skipping
impl RefUnwindSafe for Skipping
impl Send for Skipping
impl Sync for Skipping
impl Unpin for Skipping
impl UnwindSafe for Skipping
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