pub trait Coarsen {
// Required method
fn coarsen(&self, window_size: &Self) -> Self;
}
Expand description
Extension trait for timestamp types that can be rounded up to interval bounds, thus coarsening the granularity of timestamps and delaying results.
Required Methods§
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.