pub trait ListPoints: Points {
type AllPoints: Iterator<Item = Self::Point>;
// Required method
fn all_points(&self) -> Self::AllPoints;
}Expand description
Collections of points that can list everything they contain.
Required Associated Types§
Required Methods§
Sourcefn all_points(&self) -> Self::AllPoints
fn all_points(&self) -> Self::AllPoints
Return an iterator over all points in self.
It is expected that this iterator isn’t invalidated by calling
other methods like RegionQuery::neighbours (if the type also
implements that).