Skip to main content

ILoopMethods

Trait ILoopMethods 

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

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

Source

fn ctor(self)

.ctor() 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: ILoop> ILoopMethods for __T

Available on crate feature moon_sharp-interpreter-tree-loop only.