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