trait FromColumnStatistics {
// Required method
fn value_from_column_statistics(
&self,
stats: &ColumnStatistics,
) -> Option<ScalarValue>;
// Provided method
fn value_from_statistics(
&self,
statistics_args: &StatisticsArgs<'_>,
) -> Option<ScalarValue> { ... }
}