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