[][src]Trait postgis::ewkb::AsEwkbMultiLineString

pub trait AsEwkbMultiLineString<'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
    ) -> EwkbMultiLineString<'a, Self::PointType, Self::PointIter, Self::ItemType, Self::Iter>; }

Associated Types

Required Methods

Implementors

impl<'a> AsEwkbMultiLineString<'a> for MultiLineString
[src]

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