pub struct Step {
    pub keyword: String,
    pub ty: StepType,
    pub value: String,
    pub docstring: Option<String>,
    pub table: Option<Table>,
    pub span: Span,
    pub position: LineCol,
}
Expand description

A scenario step

Fields

keyword: String

The raw keyword used in the original source, including But and And.

ty: StepType

The step type for the step after parsed in context.

value: String

The value of the step after the type.

docstring: Option<String>

A docstring, if provided.

table: Option<Table>

A data table, if provided.

span: Span

The (start, end) offset the step directive was found in the .feature file.

position: LineCol

The (line, col) position the step directive was found in the .feature file.

Implementations

Create a builder for building Step. On the builder, call .keyword(...), .ty(...), .value(...), .docstring(...)(optional), .table(...)(optional), .span(...)(optional), .position(...)(optional) to set the values of the fields. Finally, call .build() to create the instance of 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
Deserialize this value from the given Serde deserializer. Read more
Formats the value using the given formatter. Read more
An arbitrary function without meaning. Read more
Returns name of this GraphQLType to expose. Read more
Returns MetaType representing this GraphQLType.
Context type for this GraphQLValue. Read more
Type that may carry additional schema information for this GraphQLValue. Read more
Returns name of the GraphQLType exposed by this GraphQLValue. Read more
Resolves the value of a single field on this GraphQLValue. Read more
Returns the concrete GraphQLType name for this GraphQLValue being an interface, an union or an object. Read more
Resolves this GraphQLValue (being an interface or an union) into a concrete downstream object type. Read more
Resolves the provided selection_set against this GraphQLValue. Read more
Resolves the value of a single field on this GraphQLValueAsync. Read more
Resolves this GraphQLValueAsync (being an interface or an union) into a concrete downstream object type. Read more
Resolves the provided selection_set against this GraphQLValueAsync. Read more
Feeds this value into the given Hasher. Read more
Feeds a slice of this type into the given Hasher. Read more
An arbitrary function without meaning. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more
Serialize this value into the given Serde serializer. 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
Compare self to key and return true if they are equal.

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
Converts the given value to a String. 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.