pub trait CoDate:
Send
+ Sync
+ 'static {
// Required method
fn now(&self) -> Date;
// Provided methods
fn now_duration(&self) -> Duration { ... }
fn boxed(self) -> DynamicCoDate
where Self: Sized { ... }
}pub trait CoDate:
Send
+ Sync
+ 'static {
// Required method
fn now(&self) -> Date;
// Provided methods
fn now_duration(&self) -> Duration { ... }
fn boxed(self) -> DynamicCoDate
where Self: Sized { ... }
}