pub trait WithTimezoneTrait<Timezone: TimeZone + Sync + Send> {
// Provided method
fn with_timezone(self, timezone: Timezone) -> WithTimezone<Self, Timezone>
where Self: Sized { ... }
}
pub trait WithTimezoneTrait<Timezone: TimeZone + Sync + Send> {
// Provided method
fn with_timezone(self, timezone: Timezone) -> WithTimezone<Self, Timezone>
where Self: Sized { ... }
}