logo

Enum cucumber::event::Scenario[][src]

pub enum Scenario<World> {
    Started,
    Hook(HookTypeHook<World>),
    Background(Arc<Step>, Step<World>),
    Step(Arc<Step>, Step<World>),
    Finished,
}
Expand description

Event specific to a particular Scenario.

Variants

Started

Scenario execution being started.

Hook(HookTypeHook<World>)

Tuple Fields

1: Hook<World>

Hook event.

Background(Arc<Step>, Step<World>)

Tuple Fields

0: Arc<Step>
1: Step<World>

Step(Arc<Step>, Step<World>)

Tuple Fields

0: Arc<Step>
1: Step<World>

Step event.

Finished

Scenario execution being finished.

Implementations

Constructs an event of a Scenario hook being started.

Constructs an event of a passed Scenario hook.

Constructs an event of a failed Scenario hook.

Constructs an event of a Step being started.

Constructs an event of a Background Step being started.

Constructs an event of a passed Step.

Constructs an event of a passed Background Step.

Constructs an event of a skipped Step.

Constructs an event of a skipped Background Step.

Constructs an event of a failed Step.

Constructs an event of a failed Background Step.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Asserts this Writer being Normalized. Read more

Wraps this Writer into a Normalized version. Read more

Wraps this Writer to print a summary at the end of an output. Read more

Wraps this Writer to fail on Skipped Steps if their Scenario isn’t marked with @allow.skipped tag. Read more

Wraps this Writer to fail on Skipped Steps if the given with predicate returns true. Read more

Wraps this Writer to re-output Skipped Steps at the end of an output. Read more

Wraps this Writer to re-output Failed Steps or Parser errors at the end of an output. Read more

Wraps this Writer to re-output filtered events at the end of an output. Read more

Attaches the provided other Writer to the current one for passing events to both of them simultaneously. Read more

Wraps this Writer into a discard::Arbitrary one, providing a no-op ArbitraryWriter implementation. Read more

Wraps this Writer into a discard::Arbitrary one, providing a no-op FailureWriter implementation returning only 0. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.