pub trait WorldInventory: World {
    type Given: Collect + StepConstructor<Self>;
    type When: Collect + StepConstructor<Self>;
    type Then: Collect + StepConstructor<Self>;
}
Available on crate feature macros only.
Expand description

World extension allowing to register steps in inventory.

Required Associated Types

Struct submitted in a given macro.

Struct submitted in a when macro.

Struct submitted in a then macro.

Implementors