[][src]Struct embedded_graphics::primitives::circle::StyledCircleIterator

pub struct StyledCircleIterator<C: PixelColor> { /* fields omitted */ }

Pixel iterator for each pixel in the circle border

Trait Implementations

impl<C: Clone + PixelColor> Clone for StyledCircleIterator<C>[src]

impl<C: Copy + PixelColor> Copy for StyledCircleIterator<C>[src]

impl<C: Debug + PixelColor> Debug for StyledCircleIterator<C>[src]

impl<C: Eq + PixelColor> Eq for StyledCircleIterator<C>[src]

impl<C: Hash + PixelColor> Hash for StyledCircleIterator<C>[src]

impl<C> Iterator for StyledCircleIterator<C> where
    C: PixelColor
[src]

type Item = Pixel<C>

The type of the elements being iterated over.

impl<C: Ord + PixelColor> Ord for StyledCircleIterator<C>[src]

impl<C: PartialEq + PixelColor> PartialEq<StyledCircleIterator<C>> for StyledCircleIterator<C>[src]

impl<C: PartialOrd + PixelColor> PartialOrd<StyledCircleIterator<C>> for StyledCircleIterator<C>[src]

impl<C: PixelColor> StructuralEq for StyledCircleIterator<C>[src]

impl<C: PixelColor> StructuralPartialEq for StyledCircleIterator<C>[src]

Auto Trait Implementations

impl<C> Send for StyledCircleIterator<C> where
    C: Send

impl<C> Sync for StyledCircleIterator<C> where
    C: Sync

impl<C> Unpin for StyledCircleIterator<C> where
    C: Unpin

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<I> IteratorRandom for I where
    I: Iterator
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Scalar for T where
    T: PartialEq<T> + Copy + Any + Debug
[src]

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,