Trait embedded_graphics::primitives::PointsIter[][src]

pub trait PointsIter {
    type Iter: Iterator;
    fn points(&self) -> Self::Iter;
}
Expand description

Create an iterator over all points in the primitive.

Associated Types

type Iter: Iterator[src]

Iterator over all points inside the primitive.

Required methods

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

Returns an iterator over all points inside the primitive.

Implementors

impl PointsIter for Arc[src]

type Iter = Points

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

impl PointsIter for Circle[src]

type Iter = Points

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

impl PointsIter for Ellipse[src]

type Iter = Points

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

impl PointsIter for Line[src]

type Iter = Points

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

impl PointsIter for Rectangle[src]

type Iter = Points

pub fn points(&self) -> <Rectangle as PointsIter>::Iter[src]

impl PointsIter for RoundedRectangle[src]

type Iter = Points

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

impl PointsIter for Sector[src]

type Iter = Points

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

impl PointsIter for Triangle[src]

type Iter = Points

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

impl<'a> PointsIter for Polyline<'a>[src]

type Iter = Points<'a>

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