pub trait Weight {
// Required method
fn weight_units(&self) -> WeightUnits;
// Provided method
fn vbytes(&self) -> VBytes { ... }
}
pub trait Weight {
// Required method
fn weight_units(&self) -> WeightUnits;
// Provided method
fn vbytes(&self) -> VBytes { ... }
}