pub trait FieldValues { // Required method fn get_value(&self, field: &str) -> Option<Value>; }
FieldValues