1use crate::traits::HasFields; 2 3pub trait FromFields: HasFields { 4 fn from_fields(fields: Self::Fields) -> Self; 5}