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

Provided Methods§

source

fn with_timezone(self, timezone: Timezone) -> WithTimezone<Self, Timezone>where Self: Sized,

Implementors§

source§

impl<T, Timezone: TimeZone + Sync + Send> WithTimezoneTrait<Timezone> for T