pub trait Processor { // Required method fn process(&self, value: &mut Value) -> Result<bool, Box<dyn Error>>; }
transform value. return true if the processor do modify the value