pub trait PrivateMax<Rhs, CmpResult> {
type Output;
// Required method
fn private_max(self, rhs: Rhs) -> Self::Output;
}pub trait PrivateMax<Rhs, CmpResult> {
type Output;
// Required method
fn private_max(self, rhs: Rhs) -> Self::Output;
}