Skip to main content

IILoopMethods

Trait IILoopMethods 

Source
pub trait IILoopMethods: IILoop {
    // Provided methods
    fn compile_break(self, bc: impl Into<ByteCode>) { ... }
    fn is_boundary(self) -> bool { ... }
}

Provided Methods§

Source

fn compile_break(self, bc: impl Into<ByteCode>)

CompileBreak(crate::moon_sharp::interpreter::execution::vm::bytecode::ByteCode) overload

Source

fn is_boundary(self) -> bool

IsBoundary() overload

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§

Source§

impl<__T: IILoop> IILoopMethods for __T

Available on crate feature moon_sharp-interpreter-execution-iloop only.