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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
use crate::process::traversal::{Order, TraversalBuilder};
use crate::structure::{GValue, T};

pub struct ByStep {
    params: Vec<GValue>,
}

impl ByStep {
    fn new(params: Vec<GValue>) -> Self {
        ByStep { params }
    }
}

impl From<ByStep> for Vec<GValue> {
    fn from(step: ByStep) -> Self {
        step.params
    }
}

impl From<()> for ByStep {
    fn from(_: ()) -> Self {
        ByStep::new(vec![])
    }
}

impl From<&str> for ByStep {
    fn from(param: &str) -> Self {
        ByStep::new(vec![String::from(param).into()])
    }
}

impl From<Order> for ByStep {
    fn from(param: Order) -> Self {
        ByStep::new(vec![param.into()])
    }
}

impl From<T> for ByStep {
    fn from(param: T) -> Self {
        ByStep::new(vec![param.into()])
    }
}

impl From<(&str, Order)> for ByStep {
    fn from(param: (&str, Order)) -> Self {
        ByStep::new(vec![param.0.into(), param.1.into()])
    }
}

impl From<(String, Order)> for ByStep {
    fn from(param: (String, Order)) -> Self {
        ByStep::new(vec![param.0.into(), param.1.into()])
    }
}

impl From<(TraversalBuilder, Order)> for ByStep {
    fn from(param: (TraversalBuilder, Order)) -> Self {
        ByStep::new(vec![param.0.bytecode.into(), param.1.into()])
    }
}

impl From<TraversalBuilder> for ByStep {
    fn from(param: TraversalBuilder) -> Self {
        ByStep::new(vec![param.bytecode.into()])
    }
}