Struct piston_window::glyph_cache::rusttype::GlyphCache[][src]

pub struct GlyphCache<'a, F, T> {
    pub font: Font<'a>,
    pub factory: F,
    // some fields omitted
}

A struct used for caching rendered font.

Fields

font: Font<'a>

The font.

factory: F

The factory used to create textures.

Implementations

impl<'a, F, T> GlyphCache<'a, F, T> where
    T: CreateTexture<F> + UpdateTexture<F> + ImageSize
[src]

pub fn from_font(
    font: Font<'a>,
    factory: F,
    settings: TextureSettings
) -> GlyphCache<'a, F, T>
[src]

Constructs a GlyphCache from a Font.

pub fn new<P>(
    font: P,
    factory: F,
    settings: TextureSettings
) -> Result<GlyphCache<'static, F, T>, Error> where
    P: AsRef<Path>, 
[src]

Constructor for a GlyphCache.

pub fn from_bytes(
    font: &'a [u8],
    factory: F,
    settings: TextureSettings
) -> Result<GlyphCache<'a, F, T>, ()>
[src]

Creates a GlyphCache for a font stored in memory.

pub fn preload_chars<I>(
    &mut self,
    size: u32,
    chars: I
) -> Result<(), <T as TextureOp<F>>::Error> where
    I: Iterator<Item = char>, 
[src]

Load all characters in the chars iterator for size

pub fn preload_printable_ascii(
    &mut self,
    size: u32
) -> Result<(), <T as TextureOp<F>>::Error>
[src]

Load all the printable ASCII characters for size. Includes space.

pub fn opt_character(&self, size: u32, ch: char) -> Option<Character<'_, T>>[src]

Return ch for size if it’s already cached. Don’t load. See the preload_* functions.

Trait Implementations

impl<'b, F, T> CharacterCache for GlyphCache<'b, F, T> where
    T: ImageSize + CreateTexture<F> + UpdateTexture<F>, 
[src]

type Texture = T

The texture type associated with the character cache.

type Error = <T as TextureOp<F>>::Error

The error type associated with the character cache.

Auto Trait Implementations

impl<'a, F, T> RefUnwindSafe for GlyphCache<'a, F, T> where
    F: RefUnwindSafe,
    T: RefUnwindSafe

impl<'a, F, T> Send for GlyphCache<'a, F, T> where
    F: Send,
    T: Send

impl<'a, F, T> Sync for GlyphCache<'a, F, T> where
    F: Sync,
    T: Sync

impl<'a, F, T> Unpin for GlyphCache<'a, F, T> where
    F: Unpin,
    T: Unpin

impl<'a, F, T> UnwindSafe for GlyphCache<'a, F, T> where
    F: UnwindSafe,
    T: UnwindSafe

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<T> Pointable for T[src]

type Init = T

The type for initializers.

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.