1 2 3 4 5 6 7
use crate::element::Element; pub trait RefData: Default { const FIELDS: &'static [&'static str]; fn on_field(&mut self, field: &str, element: &Element); }