pub trait CucumberTest:
CucumberWorld
+ WorldInventory
+ Debug {
const NAME: &'static str;
// Provided method
fn config<W: Writer<Self>>(
_cucumber: &mut Cucumber<Self, Basic, PathBuf, Basic<Self>, W>,
) { ... }
}Expand description
A trait that defines a Cucumber test.
Required Associated Constants§
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.