pub trait TimeIntersection<TW>: TimeConvexIterator {
type Output: TimeConvexIterator<TimePoint = Self::TimePoint>;
// Required method
fn intersection(self, tw: TW) -> Self::Output;
}Expand description
§Time window intersection iterator
Required Associated Types§
type Output: TimeConvexIterator<TimePoint = Self::TimePoint>
Required Methods§
fn intersection(self, tw: TW) -> Self::Output
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.