string_art::geometry::segment

Trait IntoSegments

Source
pub trait IntoSegments<T> {
    type Iterator: Iterator<Item = Segment<T>>;

    // Required method
    fn into_edges(self) -> Self::Iterator;
}

Required Associated Types§

Required Methods§

Source

fn into_edges(self) -> Self::Iterator

Implementations on Foreign Types§

Source§

impl<'a, T: Copy> IntoSegments<T> for &'a [Point<T>]

Implementors§