Skip to main content

IRepeatStatement

Trait IRepeatStatement 

Source
pub trait IRepeatStatement: IStatement {
    // Provided methods
    fn m_condition(self) -> Expression { ... }
    fn set_m_condition(self, value: Expression) { ... }
    fn m_block(self) -> Statement { ... }
    fn set_m_block(self, value: Statement) { ... }
    fn m_stack_frame(self) -> RuntimeScopeBlock { ... }
    fn set_m_stack_frame(self, value: RuntimeScopeBlock) { ... }
    fn m_repeat(self) -> SourceRef { ... }
    fn set_m_repeat(self, value: SourceRef) { ... }
    fn m_until(self) -> SourceRef { ... }
    fn set_m_until(self, value: SourceRef) { ... }
}

Provided Methods§

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§