Skip to main content

IGotoStatement

Trait IGotoStatement 

Source
pub trait IGotoStatement: IStatement {
    // Provided methods
    fn m_jump(self) -> Instruction { ... }
    fn set_m_jump(self, value: Instruction) { ... }
    fn m_label_address(self) -> i32 { ... }
    fn set_m_label_address(self, value: i32) { ... }
}

Provided Methods§

Source

fn m_jump(self) -> Instruction

Source

fn set_m_jump(self, value: Instruction)

Source

fn m_label_address(self) -> i32

Source

fn set_m_label_address(self, value: i32)

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§