pub trait ShowHistogram {
type DisplayStrategy;
// Required method
fn show_histogram(&self, display_strategy: &Self::DisplayStrategy);
}pub trait ShowHistogram {
type DisplayStrategy;
// Required method
fn show_histogram(&self, display_strategy: &Self::DisplayStrategy);
}