[][src]Trait postgis::LineString

pub trait LineString<'a> {
    type ItemType: 'a + Point;
    type Iter: Iterator<Item = &'a Self::ItemType>;
    fn points(&'a self) -> Self::Iter;
}

Associated Types

Required Methods

Implementors

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

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