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

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

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>

Loading content...

Required methods

fn as_ewkb(
    &'a self
) -> EwkbPolygon<'a, Self::PointType, Self::PointIter, Self::ItemType, Self::Iter>

Loading content...

Implementors

impl<'a> AsEwkbPolygon<'a> for Polygon[src]

type PointType = Point

type PointIter = Iter<'a, Point>

type ItemType = LineString

type Iter = Iter<'a, Self::ItemType>

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

type PointType = P

type PointIter = Iter<'a, P>

type ItemType = LineStringT<P>

type Iter = Iter<'a, Self::ItemType>

Loading content...