summaryrefslogtreecommitdiff
path: root/src/steps.rs
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2019-12-22 12:29:22 +0200
committerLars Wirzenius <liw@liw.fi>2019-12-22 12:29:22 +0200
commitd4e6e2ef9c6a504665beaa950abf75a3caa3922e (patch)
treec2e3d6987446455ed5808cd8ae62f679d40531d7 /src/steps.rs
parent36ebd13959eeed2c76f195912f7f00c781d734b1 (diff)
downloadsubplot-d4e6e2ef9c6a504665beaa950abf75a3caa3922e.tar.gz
Change: add steps to scenarios
Diffstat (limited to 'src/steps.rs')
-rw-r--r--src/steps.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/steps.rs b/src/steps.rs
index 3453e9c..f25a403 100644
--- a/src/steps.rs
+++ b/src/steps.rs
@@ -12,7 +12,7 @@ use crate::{Error, Result};
/// This is just the step as it appears in the scenario in the input
/// text. It has not been matched with a binding. See MatchedStep for
/// that.
-#[derive(Debug, Eq, PartialEq)]
+#[derive(Clone, Debug, Eq, PartialEq)]
pub struct ScenarioStep {
kind: StepKind,
text: String,