pub trait ITestSequenceMethods: ITestSequence {
// Provided methods
fn draw_message(self) { ... }
fn branch(self) -> bool { ... }
fn exce_test(self) { ... }
fn exec_test2(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn draw_message(self)
fn draw_message(self)
DrawMessage() overload
Sourcefn exec_test2(self)
fn exec_test2(self)
ExecTest2() 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: ITestSequence> ITestSequenceMethods for __T
Available on crate feature
root-testsequence only.