1 2 3 4 5 6
pub trait HasSerializableFields { fn field_count() -> usize { Self::fields().len() } fn fields() -> &'static Vec<&'static str>; }