Trait cucumber::state::SendableStep [] [src]

pub trait SendableStep<World>: Send + Fn(&Cucumber<World>, &mut World, Vec<InvokeArgument>) -> InvokeResponse { }

The trait steps must implement to be invokable

As far as I can tell, this is unimplementable because of the blanket impl Generally, any closure closing over sendable data, and taking sendable arguments in the form indicated should be implemented automatically by the blanket impl

Implementors