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
use crate::structure::GValue; pub struct LoopsStep { params: Vec<GValue>, } impl LoopsStep { fn new(params: Vec<GValue>) -> Self { LoopsStep { params } } pub fn params(self) -> Vec<GValue> { self.params } } impl Into<LoopsStep> for () { fn into(self) -> LoopsStep { LoopsStep::new(vec![]) } } impl Into<LoopsStep> for &str { fn into(self) -> LoopsStep { LoopsStep::new(vec![String::from(self).into()]) } } impl Into<LoopsStep> for String { fn into(self) -> LoopsStep { LoopsStep::new(vec![self.into()]) } }