[][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

type PointType: 'a + Point

type Iter: Iterator<Item = &'a Self::PointType> + ExactSizeIterator<Item = &'a Self::PointType>

Loading content...

Required methods

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

Loading content...

Implementors

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

type PointType = Point

type Iter = Iter<'a, Point>

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

type PointType = P

type Iter = Iter<'a, P>

Loading content...