[][src]Struct gba_types::InterruptFlagBits

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

Implementations

impl InterruptFlagBits[src]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pub fn set_vblank(&mut self, vblank: bool)[src]

pub fn set_hblank(&mut self, hblank: bool)[src]

pub fn set_vcount_match(&mut self, vcount_match: bool)[src]

pub fn set_timer0(&mut self, timer0: bool)[src]

pub fn set_timer1(&mut self, timer1: bool)[src]

pub fn set_timer2(&mut self, timer2: bool)[src]

pub fn set_timer3(&mut self, timer3: bool)[src]

pub fn set_serial_communication(&mut self, serial_communication: bool)[src]

pub fn set_dma0(&mut self, dma0: bool)[src]

pub fn set_dma1(&mut self, dma1: bool)[src]

pub fn set_dma2(&mut self, dma2: bool)[src]

pub fn set_dma3(&mut self, dma3: bool)[src]

pub fn set_keypad(&mut self, keypad: bool)[src]

pub fn set_game_pak(&mut self, game_pak: bool)[src]

Trait Implementations

impl Clone for InterruptFlagBits[src]

impl Copy for InterruptFlagBits[src]

impl Debug for InterruptFlagBits[src]

impl Default for InterruptFlagBits[src]

impl Eq for InterruptFlagBits[src]

impl Hash for InterruptFlagBits[src]

impl Ord for InterruptFlagBits[src]

impl PartialEq<InterruptFlagBits> for InterruptFlagBits[src]

impl PartialOrd<InterruptFlagBits> for InterruptFlagBits[src]

impl StructuralEq for InterruptFlagBits[src]

impl StructuralPartialEq for InterruptFlagBits[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.