pub enum StartedWith {
    Block,
    If,
    Else,
    Loop,
}Expand description
An opcode that opened the particular frame.
We need that to ensure proper combinations with End instruction.
Variants§
Trait Implementations§
Source§impl Clone for StartedWith
 
impl Clone for StartedWith
Source§fn clone(&self) -> StartedWith
 
fn clone(&self) -> StartedWith
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 StartedWith
 
impl Debug for StartedWith
Source§impl PartialEq for StartedWith
 
impl PartialEq for StartedWith
impl Copy for StartedWith
impl Eq for StartedWith
impl StructuralPartialEq for StartedWith
Auto Trait Implementations§
impl Freeze for StartedWith
impl RefUnwindSafe for StartedWith
impl Send for StartedWith
impl Sync for StartedWith
impl Unpin for StartedWith
impl UnwindSafe for StartedWith
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