Trait MultiLineString

Source
pub trait MultiLineString<'a>: Send + Sync {
    type ItemType: 'a + LineString<'a>;
    type Iter: Iterator<Item = &'a Self::ItemType>;

    // Required method
    fn lines(&'a self) -> Self::Iter;
}

Required Associated Types§

Source

type ItemType: 'a + LineString<'a>

Source

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

Required Methods§

Source

fn lines(&'a self) -> Self::Iter

Implementors§