[go: up one dir, main page]

MultiPolygon

Trait MultiPolygon 

Source
pub trait MultiPolygon<'a>: Send + Sync {
    type ItemType: 'a + Polygon<'a>;
    type Iter: Iterator<Item = &'a Self::ItemType>;

    // Required method
    fn polygons(&'a self) -> Self::Iter;
}

Required Associated Types§

Source

type ItemType: 'a + Polygon<'a>

Source

type Iter: Iterator<Item = &'a Self::ItemType>

Required Methods§

Source

fn polygons(&'a self) -> Self::Iter

Implementors§