[][src]Struct gba_types::WaitControlSetting

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

Implementations

impl WaitControlSetting[src]

#[must_use]pub fn sram_wait(self) -> SramWaitControlCycles[src]

#[must_use]pub fn wait0_first_access(self) -> Rom0WaitControlCycles[src]

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

#[must_use]pub fn wait1_first_access(self) -> Rom1WaitControlCycles[src]

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

#[must_use]pub fn wait2_first_access(self) -> Rom2WaitControlCycles[src]

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

#[must_use]pub fn phi_terminal(self) -> PhiTerminalOutput[src]

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

pub fn set_sram_wait(&mut self, sram_wait: SramWaitControlCycles)[src]

pub fn set_wait0_first_access(
    &mut self,
    wait0_first_access: Rom0WaitControlCycles
)
[src]

pub fn set_wait0_second_access_1cycle(
    &mut self,
    wait0_second_access_1cycle: bool
)
[src]

pub fn set_wait1_first_access(
    &mut self,
    wait1_first_access: Rom1WaitControlCycles
)
[src]

pub fn set_wait1_second_access_1cycle(
    &mut self,
    wait1_second_access_1cycle: bool
)
[src]

pub fn set_wait2_first_access(
    &mut self,
    wait2_first_access: Rom2WaitControlCycles
)
[src]

pub fn set_wait2_second_access_1cycle(
    &mut self,
    wait2_second_access_1cycle: bool
)
[src]

pub fn set_phi_terminal(&mut self, phi_terminal: PhiTerminalOutput)[src]

pub fn set_game_pak_prefetch_enabled(&mut self, game_pak_prefetch_enabled: bool)[src]

Trait Implementations

impl Clone for WaitControlSetting[src]

impl Copy for WaitControlSetting[src]

impl Debug for WaitControlSetting[src]

impl Default for WaitControlSetting[src]

impl Eq for WaitControlSetting[src]

impl Hash for WaitControlSetting[src]

impl Ord for WaitControlSetting[src]

impl PartialEq<WaitControlSetting> for WaitControlSetting[src]

impl PartialOrd<WaitControlSetting> for WaitControlSetting[src]

impl StructuralEq for WaitControlSetting[src]

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