Struct allegro_font::Font[][src]

pub struct Font { /* fields omitted */ }

Implementations

impl Font[src]

pub fn new_builtin(_: &FontAddon) -> Result<Font, ()>[src]

pub fn load_bitmap_font(_: &FontAddon, filename: &str) -> Result<Font, ()>[src]

pub fn grab_from_bitmap(
    _: &FontAddon,
    bmp: &Bitmap,
    ranges: &[(c_int, c_int)]
) -> Result<Font, ()>
[src]

pub unsafe fn wrap_allegro_font(font: *mut ALLEGRO_FONT) -> Result<Font, ()>[src]

pub fn get_font(&self) -> *mut ALLEGRO_FONT[src]

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

pub fn get_line_height(&self) -> i32[src]

pub fn get_ascent(&self) -> i32[src]

pub fn get_descent(&self) -> i32[src]

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

Trait Implementations

impl Drop for Font[src]

impl Send for Font[src]

impl Sync for Font[src]

Auto Trait Implementations

impl RefUnwindSafe for Font

impl Unpin for Font

impl UnwindSafe for Font

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, 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.