Trait postgis::ewkb::AsEwkbPolygon [] [src]

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

Associated Types

Required Methods

Implementors