pub trait ILoopBoundaryMethods: ILoopBoundary {
// Provided methods
fn compile_break(self, bc: impl Into<ByteCode>) { ... }
fn is_boundary(self) -> bool { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn compile_break(self, bc: impl Into<ByteCode>)
fn compile_break(self, bc: impl Into<ByteCode>)
CompileBreak(crate::moon_sharp::interpreter::execution::vm::bytecode::ByteCode) overload
Sourcefn is_boundary(self) -> bool
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§
impl<__T: ILoopBoundary> ILoopBoundaryMethods for __T
Available on crate feature
moon_sharp-interpreter-tree-loopboundary only.