Trait postgis::LineString[][src]

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

Associated Types

type ItemType: 'a + Point[src]

type Iter: Iterator<Item = &'a Self::ItemType>[src]

Loading content...

Required methods

fn points(&'a self) -> Self::Iter[src]

Loading content...

Implementors

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

type ItemType = Point

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

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

type ItemType = P

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

Loading content...