Polygon

Trait Polygon 

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

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

Required Associated Types§

Source

type ItemType: 'a + LineString<'a>

Source

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

Required Methods§

Source

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

Implementors§

Source§

impl<'a> Polygon<'a> for Polygon

Source§

impl<'a, P> Polygon<'a> for PolygonT<P>
where P: 'a + Point + EwkbRead,