Trait MultiPoint

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

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

Required Associated Types§

Source

type ItemType: 'a + Point

Source

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

Required Methods§

Source

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

Implementors§

Source§

impl<'a> MultiPoint<'a> for MultiPoint

Source§

impl<'a, P> MultiPoint<'a> for MultiPointT<P>
where P: 'a + Point + EwkbRead,