pub trait Schematic {
// Required methods
fn name() -> &'static str;
fn required() -> bool;
fn type_() -> &'static str;
// Provided method
fn generate_schema() -> Schema { ... }
}pub trait Schematic {
// Required methods
fn name() -> &'static str;
fn required() -> bool;
fn type_() -> &'static str;
// Provided method
fn generate_schema() -> Schema { ... }
}