[][src]Struct graphics::character::Character

pub struct Character<'a, T: 'a + ImageSize> {
    pub offset: [Scalar; 2],
    pub advance_size: [Scalar; 2],
    pub atlas_offset: [Scalar; 2],
    pub atlas_size: [Scalar; 2],
    pub texture: &'a T,
}

Holds rendered character data.

Fields

offset: [Scalar; 2]

The offset of character.

advance_size: [Scalar; 2]

The advance size of character, including space.

atlas_offset: [Scalar; 2]

The offset of character within texture atlas.

atlas_size: [Scalar; 2]

The size of character within texture atlas.

texture: &'a T

The texture of the character.

Implementations

impl<'a, T: ImageSize> Character<'a, T>[src]

pub fn left(&self) -> Scalar[src]

The left offset.

pub fn top(&self) -> Scalar[src]

The top offset.

pub fn advance_width(&self) -> Scalar[src]

Gets width of character, including space to the next one.

pub fn advance_height(&self) -> Scalar[src]

Sets height of character, including space to the next one.

Trait Implementations

impl<'a, T: Clone + 'a + ImageSize> Clone for Character<'a, T>[src]

Auto Trait Implementations

impl<'a, T> RefUnwindSafe for Character<'a, T> where
    T: RefUnwindSafe

impl<'a, T> Send for Character<'a, T> where
    T: Sync

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

impl<'a, T> Unpin for Character<'a, T>

impl<'a, T> UnwindSafe for Character<'a, T> where
    T: RefUnwindSafe

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.