[][src]Trait postgis::ewkb::AsEwkbLineString

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

Associated Types

Required Methods

Implementors

impl<'a> AsEwkbLineString<'a> for LineString
[src]

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