Skip to main content

ILoopBoundaryMethods

Trait ILoopBoundaryMethods 

Source
pub trait ILoopBoundaryMethods: ILoopBoundary {
    // 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: ILoopBoundary> ILoopBoundaryMethods for __T

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