Trait postgis::Polygon[][src]

pub trait Polygon<'a>: Send + Sync {
    type ItemType: 'a + LineString<'a>;
    type Iter: Iterator<Item = &'a Self::ItemType>;
    fn rings(&'a self) -> Self::Iter;
}

Associated Types

type ItemType: 'a + LineString<'a>[src]

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

Loading content...

Required methods

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

Loading content...

Implementors

impl<'a> Polygon<'a> for Polygon[src]

type ItemType = LineString

type Iter = Iter<'a, Self::ItemType>

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

type ItemType = LineStringT<P>

type Iter = Iter<'a, Self::ItemType>

Loading content...