pub trait Filterable { // Required methods fn collection(&self) -> &str; fn value(&self, name: &str) -> Option<String>; }