[][src]Trait postgis::Polygon

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

Associated Types

Required Methods

Implementors

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

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