pub enum ExhaustiveSteps {
SetupPassed,
SetupFailed,
SetupSkipped,
RunPassed,
RunFailed,
RunSkipped,
TeardownPassed,
TeardownFailed,
TeardownSkipped,
}Variants§
SetupPassed
SetupFailed
SetupSkipped
RunPassed
RunFailed
RunSkipped
TeardownPassed
TeardownFailed
TeardownSkipped
Trait Implementations§
Source§impl From<ExhaustiveSteps> for CreateStepRequest
impl From<ExhaustiveSteps> for CreateStepRequest
Source§fn from(exhaustive_step: ExhaustiveSteps) -> Self
fn from(exhaustive_step: ExhaustiveSteps) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ExhaustiveSteps
impl RefUnwindSafe for ExhaustiveSteps
impl Send for ExhaustiveSteps
impl Sync for ExhaustiveSteps
impl Unpin for ExhaustiveSteps
impl UnwindSafe for ExhaustiveSteps
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more