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

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

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

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