trait AddToCaps {
type Bound;
// Required method
fn add_to_caps(
&self,
name: &str,
min: Self::Bound,
max: Self::Bound,
builder: Builder<NoFeature>,
) -> Option<Builder<NoFeature>>;
}
trait AddToCaps {
type Bound;
// Required method
fn add_to_caps(
&self,
name: &str,
min: Self::Bound,
max: Self::Bound,
builder: Builder<NoFeature>,
) -> Option<Builder<NoFeature>>;
}