Struct graphics::character::Character [−][src]
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
Auto Trait Implementations
impl<'a, T> RefUnwindSafe for Character<'a, T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<'a, T> Send for Character<'a, T> where
T: Sync,
T: Sync,
impl<'a, T> Sync for Character<'a, T> where
T: Sync,
T: Sync,
impl<'a, T> Unpin for Character<'a, T>
impl<'a, T> UnwindSafe for Character<'a, T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,