pub trait ToFields {
type Field: FieldTrait;
// Required method
fn to_fields(&self) -> Vec<Self::Field>;
}Expand description
Unary operator for converting to a list of base fields.
pub trait ToFields {
type Field: FieldTrait;
// Required method
fn to_fields(&self) -> Vec<Self::Field>;
}Unary operator for converting to a list of base fields.