pub trait TimeSelect: ToDt {
// Provided methods
fn before(&self) -> ForCompare<dt> { ... }
fn after(&self) -> ForCompare<dt> { ... }
fn to<T: ToDt>(&self, other: T) -> ForCompare<dt> { ... }
}Provided Methods§
fn before(&self) -> ForCompare<dt>
fn after(&self) -> ForCompare<dt>
fn to<T: ToDt>(&self, other: T) -> ForCompare<dt>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.