[][src]Struct gherkin_rust::Step

pub struct Step {
    pub ty: StepType,
    pub raw_type: String,
    pub value: String,
    pub docstring: Option<String>,
    pub table: Option<Table>,
    pub position: (usize, usize),
}

A scenario step

Fields

ty: StepType

The step type for the step after parsed in context.

raw_type: String

The original raw step type, including But and And.

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.

position: (usize, usize)

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

Methods

impl Step[src]

pub fn docstring(&self) -> Option<&String>[src]

pub fn table(&self) -> Option<&Table>[src]

pub fn to_string(&self) -> String[src]

Trait Implementations

impl Clone for Step[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl PartialEq<Step> for Step[src]

impl Eq for Step[src]

impl Debug for Step[src]

impl Hash for Step[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl Sync for Step

impl Send for Step

impl Unpin for Step

impl RefUnwindSafe for Step

impl UnwindSafe for Step

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]