Skip to main content

StepExecution

Enum StepExecution 

Source
pub enum StepExecution {
    Continue {
        value: Option<Box<dyn Any>>,
    },
    Skipped {
        message: Option<String>,
    },
}
Expand description

Outcome produced by step wrappers.

Variants§

§

Continue

The step executed successfully and may provide a value for later steps.

Fields

§value: Option<Box<dyn Any>>

Value returned by the step, made available to later fixtures.

§

Skipped

The step requested that the scenario should be skipped.

Fields

§message: Option<String>

Optional reason describing why execution stopped.

Implementations§

Source§

impl StepExecution

Source

pub fn from_value(value: Option<Box<dyn Any>>) -> Self

Construct a successful outcome with an optional value.

Source

pub fn skipped(message: impl Into<Option<String>>) -> Self

Construct a skipped outcome with an optional reason.

Trait Implementations§

Source§

impl Debug for StepExecution

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.