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
type PointType: 'a + Point
type Iter: Iterator<Item=&'a Self::PointType> + ExactSizeIterator<Item=&'a Self::PointType>
Required Methods
fn as_ewkb(&'a self) -> EwkbMultiPoint<'a, Self::PointType, Self::Iter>
Implementors
impl<'a, P> AsEwkbMultiPoint<'a> for MultiPointT<P> where P: 'a + Point + EwkbReadimpl<'a> AsEwkbMultiPoint<'a> for MultiPoint