Trait postgis::ewkb::AsEwkbMultiPoint[][src]

pub trait AsEwkbMultiPoint<'a> {
    type PointType: 'a + Point;
    type Iter: Iterator<Item = &'a Self::PointType> + ExactSizeIterator<Item = &'a Self::PointType>;
    fn as_ewkb(&'a self) -> EwkbMultiPoint<'a, Self::PointType, Self::Iter>;
}

Associated Types

Required methods

Implementors