[][src]Struct leafrender::render::font::FontCache

pub struct FontCache<'a, T: Sized> { /* fields omitted */ }

Methods

impl<'a, T: Dimensions> FontCache<'a, T>[src]

pub fn get_width(&self, text: &str, size: i32) -> i32[src]

Returns the width of a specified string.

pub fn draw(
    &mut self,
    text: &str,
    color: &Color,
    size: i32,
    pos: &Position,
    draw: &mut dyn Drawer<NativeTexture = T>
)
[src]

Draws the specified string to the screen.

pub fn from_bytes(data: &'a [u8]) -> Result<Self, String>[src]

Creates a new cache from a .ttf file.

Auto Trait Implementations

impl<'a, T> Send for FontCache<'a, T> where
    T: Send

impl<'a, T> Sync for FontCache<'a, T> where
    T: Sync

Blanket Implementations

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.

impl<T> Erased for T