trait TimesExtract<D, R> {
type Times;
// Required method
fn times_extract(self, name: &str) -> (Self, Self::Times)
where Self: Sized;
}trait TimesExtract<D, R> {
type Times;
// Required method
fn times_extract(self, name: &str) -> (Self, Self::Times)
where Self: Sized;
}