pub struct BoundScenario {
pub name: String,
pub tags: Vec<String>,
pub line: usize,
pub steps: Vec<BoundStep>,
}Expand description
One scenario with every step bound.
Fields§
§name: StringScenario name (post-expansion).
Accumulated tags (without @).
line: usize1-based header line.
steps: Vec<BoundStep>Bound steps in authored order.
Trait Implementations§
Source§impl Clone for BoundScenario
impl Clone for BoundScenario
Source§fn clone(&self) -> BoundScenario
fn clone(&self) -> BoundScenario
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for BoundScenario
impl RefUnwindSafe for BoundScenario
impl Send for BoundScenario
impl Sync for BoundScenario
impl Unpin for BoundScenario
impl UnsafeUnpin for BoundScenario
impl UnwindSafe for BoundScenario
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