Skip to main content

ITestSequenceMethods

Trait ITestSequenceMethods 

Source
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§

Source

fn draw_message(self)

DrawMessage() overload

Source

fn branch(self) -> bool

Branch() overload

Source

fn exce_test(self)

ExceTest() overload

Source

fn exec_test2(self)

ExecTest2() 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: ITestSequence> ITestSequenceMethods for __T

Available on crate feature root-testsequence only.