[][src]Trait postgis::MultiPolygon

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

Associated Types

Required Methods

Implementors

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

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