[][src]Struct gba_types::TextScreenEntry

#[repr(transparent)]pub struct TextScreenEntry(_);

Implementations

impl TextScreenEntry[src]

#[must_use]pub fn tile_id(self) -> u16[src]

#[must_use]pub fn horizontal_flip(self) -> bool[src]

#[must_use]pub fn vertical_flip(self) -> bool[src]

#[must_use]pub fn palbank(self) -> u16[src]

pub fn set_tile_id(&mut self, tile_id: u16)[src]

pub fn set_horizontal_flip(&mut self, horizontal_flip: bool)[src]

pub fn set_vertical_flip(&mut self, vertical_flip: bool)[src]

pub fn set_palbank(&mut self, palbank: u16)[src]

Trait Implementations

impl Clone for TextScreenEntry[src]

impl Copy for TextScreenEntry[src]

impl Debug for TextScreenEntry[src]

impl Default for TextScreenEntry[src]

impl Eq for TextScreenEntry[src]

impl Hash for TextScreenEntry[src]

impl Ord for TextScreenEntry[src]

impl PartialEq<TextScreenEntry> for TextScreenEntry[src]

impl PartialOrd<TextScreenEntry> for TextScreenEntry[src]

impl StructuralEq for TextScreenEntry[src]

impl StructuralPartialEq for TextScreenEntry[src]

Auto Trait Implementations

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.