Trait postgis::MultiLineString [] [src]

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

Associated Types

Required Methods

Implementors