pub enum BddPhase {
Core,
Runtime,
}Expand description
BDD status phase for a scenario.
§Examples
use adze_bdd_scenario_core::BddPhase;
let phase = BddPhase::Core;
assert_eq!(phase, BddPhase::Core);Variants§
Trait Implementations§
impl Copy for BddPhase
impl Eq for BddPhase
impl StructuralPartialEq for BddPhase
Auto Trait Implementations§
impl Freeze for BddPhase
impl RefUnwindSafe for BddPhase
impl Send for BddPhase
impl Sync for BddPhase
impl Unpin for BddPhase
impl UnsafeUnpin for BddPhase
impl UnwindSafe for BddPhase
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