[][src]Struct embedded_graphics::fonts::font_builder::FontBuilder

pub struct FontBuilder<'a, C: PixelColor, Conf> {
    pub pos: Coord,
    // some fields omitted
}

The font builder

Fields

pos: Coord

Top left corner of the text

Trait Implementations

impl<'a, C, Conf> Drawable for FontBuilder<'a, C, Conf> where
    C: PixelColor
[src]

impl<'a, C, Conf> Dimensions for FontBuilder<'a, C, Conf> where
    C: PixelColor,
    Conf: FontBuilderConf
[src]

fn size(&self) -> UnsignedCoord[src]

Get the bounding box of a piece of text

Currently does not handle newlines (but neither does the rasteriser). It will give (0, 0) if the string to render is empty.

impl<'a, C, Conf> Font<'a, C> for FontBuilder<'a, C, Conf> where
    C: PixelColor,
    Conf: FontBuilderConf
[src]

impl<'a, C, Conf> WithStyle<C> for FontBuilder<'a, C, Conf> where
    C: PixelColor
[src]

impl<'a, C, Conf> Transform for FontBuilder<'a, C, Conf> where
    C: PixelColor
[src]

fn translate(&self, by: Coord) -> Self[src]

Translate the image from its current position to a new position by (x, y) pixels, returning a new Font8x16. For a mutating transform, see translate_mut.

// 8px x 1px test image
let text = Font8x16::render_str("Hello world")
let moved = text.translate(Coord::new(25, 30));

assert_eq!(text.pos, Coord::new(0, 0));
assert_eq!(moved.pos, Coord::new(25, 30));

fn translate_mut(&mut self, by: Coord) -> &mut Self[src]

Translate the font origin from its current position to a new position by (x, y) pixels.

// 8px x 1px test image
let mut text = Font8x16::render_str("Hello world")
text.translate_mut(Coord::new(25, 30));

assert_eq!(text.pos, Coord::new(25, 30));

impl<'a, C: Debug + PixelColor, Conf: Debug> Debug for FontBuilder<'a, C, Conf>[src]

impl<'a, C: PixelColor + Copy, Conf> Copy for FontBuilder<'a, C, Conf>[src]

impl<'a, C, Conf> IntoIterator for &'a FontBuilder<'a, C, Conf> where
    C: PixelColor,
    Conf: FontBuilderConf
[src]

type IntoIter = FontBuilderIterator<'a, C, Conf>

Which kind of iterator are we turning this into?

type Item = Pixel<C>

The type of the elements being iterated over.

impl<'a, C: PixelColor + Clone, Conf> Clone for FontBuilder<'a, C, Conf>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<'a, C, Conf> Send for FontBuilder<'a, C, Conf> where
    C: Send,
    Conf: Send

impl<'a, C, Conf> Sync for FontBuilder<'a, C, Conf> where
    C: Sync,
    Conf: Sync

Blanket Implementations

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto 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<T, U> Into for T where
    U: From<T>, 
[src]

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

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

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