1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
use crate::process::traversal::TraversalBuilder; use crate::structure::GValue; pub struct RepeatStep { params: Vec<GValue>, } impl RepeatStep { fn new(params: Vec<GValue>) -> Self { RepeatStep { params } } } impl RepeatStep { pub fn take_params(self) -> Vec<GValue> { self.params } } pub trait IntoRepeatStep { fn into_step(self) -> RepeatStep; } impl IntoRepeatStep for TraversalBuilder { fn into_step(self) -> RepeatStep { RepeatStep::new(vec![self.bytecode.into()]) } }