pub struct Feature {
    pub keyword: String,
    pub name: String,
    pub description: Option<String>,
    pub background: Option<Background>,
    pub scenarios: Vec<Scenario>,
    pub rules: Vec<Rule>,
    pub tags: Vec<String>,
    pub span: Span,
    pub position: LineCol,
    pub path: Option<PathBuf>,
}
Expand description

A feature

Fields

keyword: String

The raw keyword used in the original source.

name: String

The name of the feature.

description: Option<String>

The description of the feature, if found.

background: Option<Background>

The background of the feature, if found.

scenarios: Vec<Scenario>

The scenarios for the feature.

rules: Vec<Rule>

The rules for the feature.

tags: Vec<String>

The tags for the feature if provided.

span: Span

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

position: LineCol

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

path: Option<PathBuf>

The path supplied for the parsed Feature, if known.

Implementations

Create a builder for building Feature. On the builder, call .keyword(...), .name(...), .description(...)(optional), .background(...)(optional), .scenarios(...)(optional), .rules(...)(optional), .tags(...)(optional), .span(...)(optional), .position(...)(optional), .path(...)(optional) to set the values of the fields. Finally, call .build() to create the instance of Feature.

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
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 returns an Ordering between self and other. Read more
Compares and returns the maximum of two values. Read more
Compares and returns the minimum of two values. Read more
Restrict a value to a certain interval. 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
This method returns an ordering between self and other values if one exists. Read more
This method tests less than (for self and other) and is used by the < operator. Read more
This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
This method tests greater than (for self and other) and is used by the > operator. Read more
This method tests greater than or equal to (for self and other) and is used by the >= operator. 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
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.