pub trait Intersect {
    type Intersection;

    fn intersect(self) -> Option<Self::Intersection>;
}
Expand description

Compute the intersection between a tuple of objects

Implementation Note

This trait is newer than most of the intersection algorithms in this module. Most of them don’t support it yet.

Required Associated Types§

The type that describes the intersection between the objects in Self

Required Methods§

Compute the intersection between a tuple of objects

Implementations on Foreign Types§

Implementors§