pub trait ReducibleResponse { // Provided methods fn merge(self, _b: Self) -> Self where Self: Default { ... } fn empty() -> Self where Self: Default { ... } }