[][src]Struct ndless_sdl::nsdl::Font

pub struct Font {
    pub font: *mut nSDL_Font,
}

Fields

font: *mut nSDL_Font

Implementations

impl Font[src]

pub fn new(font: FontOptions, r: u8, g: u8, b: u8) -> Self[src]

pub fn draw(&self, surface: *mut SDL_Surface, msg: &str, x: i32, y: i32)[src]

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

pub fn get_height(&self, msg: &str) -> i32[src]

pub fn monospaced(&self, monospaced: bool)[src]

pub fn spacing(&self, horizontal: i32, vertical: i32)[src]

Trait Implementations

impl Clone for Font[src]

impl Debug for Font[src]

impl Drop for Font[src]

Auto Trait Implementations

impl !Send for Font

impl !Sync for Font

impl Unpin 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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.