[][src]Struct gba_hal::data::WindowOut

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

Controls outside of the windows and the OBJ window.

  • 0-3: Outside Window BG0 through BG3 enable
  • 4: Outside Window OBJ enable
  • 5: Outside Window color special effect enable
  • 8-11: OBJ Window BG0 through BG3 enable
  • 12: OBJ Window OBJ enable
  • 13: OBJ Window color special effect enable

Methods

impl WindowOut[src]

pub const fn new() -> Self[src]

A const "zero value" constructor

impl WindowOut[src]

pub const OUTSIDE_BG0_BIT: u16[src]

pub const fn outside_bg0(self) -> bool[src]

pub const fn with_outside_bg0(self, bit: bool) -> Self[src]

pub const OUTSIDE_BG1_BIT: u16[src]

pub const fn outside_bg1(self) -> bool[src]

pub const fn with_outside_bg1(self, bit: bool) -> Self[src]

pub const OUTSIDE_BG2_BIT: u16[src]

pub const fn outside_bg2(self) -> bool[src]

pub const fn with_outside_bg2(self, bit: bool) -> Self[src]

pub const OUTSIDE_BG3_BIT: u16[src]

pub const fn outside_bg3(self) -> bool[src]

pub const fn with_outside_bg3(self, bit: bool) -> Self[src]

pub const OUTSIDE_OBJ_BIT: u16[src]

pub const fn outside_obj(self) -> bool[src]

pub const fn with_outside_obj(self, bit: bool) -> Self[src]

pub const OUTSIDE_COLOR_EFFECT_BIT: u16[src]

pub const fn outside_color_effect(self) -> bool[src]

pub const fn with_outside_color_effect(self, bit: bool) -> Self[src]

pub const WIN_OBJ_BG0_BIT: u16[src]

pub const fn win_obj_bg0(self) -> bool[src]

pub const fn with_win_obj_bg0(self, bit: bool) -> Self[src]

pub const WIN_OBJ_BG1_BIT: u16[src]

pub const fn win_obj_bg1(self) -> bool[src]

pub const fn with_win_obj_bg1(self, bit: bool) -> Self[src]

pub const WIN_OBJ_BG2_BIT: u16[src]

pub const fn win_obj_bg2(self) -> bool[src]

pub const fn with_win_obj_bg2(self, bit: bool) -> Self[src]

pub const WIN_OBJ_BG3_BIT: u16[src]

pub const fn win_obj_bg3(self) -> bool[src]

pub const fn with_win_obj_bg3(self, bit: bool) -> Self[src]

pub const WIN_OBJ_OBJ_BIT: u16[src]

pub const fn win_obj_obj(self) -> bool[src]

pub const fn with_win_obj_obj(self, bit: bool) -> Self[src]

pub const WIN_OBJ_COLOR_EFFECT_BIT: u16[src]

pub const fn win_obj_color_effect(self) -> bool[src]

pub const fn with_win_obj_color_effect(self, bit: bool) -> Self[src]

Trait Implementations

impl PartialEq<WindowOut> for WindowOut[src]

impl Eq for WindowOut[src]

impl Copy for WindowOut[src]

impl Debug for WindowOut[src]

impl Clone for WindowOut[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for WindowOut[src]

Auto Trait Implementations

impl Send for WindowOut

impl Sync for WindowOut

Blanket Implementations

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> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]