pub trait ILabelStatement: IStatement {
// Provided methods
fn m_gotos(self) -> List_1<GotoStatement> { ... }
fn set_m_gotos(self, value: List_1<GotoStatement>) { ... }
fn m_stack_frame(self) -> RuntimeScopeBlock { ... }
fn set_m_stack_frame(self, value: RuntimeScopeBlock) { ... }
}Provided Methods§
fn m_gotos(self) -> List_1<GotoStatement>
fn set_m_gotos(self, value: List_1<GotoStatement>)
fn m_stack_frame(self) -> RuntimeScopeBlock
fn set_m_stack_frame(self, value: RuntimeScopeBlock)
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.