[][src]Struct embedded_graphics::fonts::StyledTextIterator

pub struct StyledTextIterator<'a, C, F> where
    C: PixelColor,
    F: Font
{ /* fields omitted */ }

Pixel iterator for styled text.

Trait Implementations

impl<'a, C: Clone, F: Clone> Clone for StyledTextIterator<'a, C, F> where
    C: PixelColor,
    F: Font
[src]

impl<'a, C: Copy, F: Copy> Copy for StyledTextIterator<'a, C, F> where
    C: PixelColor,
    F: Font
[src]

impl<'a, C: Debug, F: Debug> Debug for StyledTextIterator<'a, C, F> where
    C: PixelColor,
    F: Font
[src]

impl<'_, C, F> Iterator for StyledTextIterator<'_, C, F> where
    C: PixelColor,
    F: Font
[src]

type Item = Pixel<C>

The type of the elements being iterated over.

Auto Trait Implementations

impl<'a, C, F> Send for StyledTextIterator<'a, C, F> where
    C: Send,
    F: Send

impl<'a, C, F> Sync for StyledTextIterator<'a, C, F> where
    C: Sync,
    F: Sync

impl<'a, C, F> Unpin for StyledTextIterator<'a, C, F> where
    C: Unpin,
    F: 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<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>,