[][src]Trait postgis::MultiPoint

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

Associated Types

Required Methods

Implementors

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

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