1use super::value_types::ValueType; 2 3pub trait Transformer { 4 fn parse(&self, type_input: String, input_value: String) -> ValueType; 5}