[][src]Struct ezui::FontTexture

pub struct FontTexture { /* fields omitted */ }

Texture which contains the characters of the font.

Methods

impl FontTexture[src]

pub fn ascii_character_list() -> Vec<char>[src]

Vec of complete ASCII range (from 0 to 255 bytes)

pub fn new<R, F>(
    facade: &F,
    font: R,
    font_size: u32,
    characters_list: Vec<char>
) -> Result<FontTexture, ()> where
    F: Facade,
    R: Read
[src]

Creates a new texture representing a font stored in a FontTexture.

Auto Trait Implementations

Blanket Implementations

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

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

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

type Error = !

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

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

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

impl<T> SetParameter for T

impl<T> Same<T> for T

type Output = T

Should always be Self

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