[][src]Struct gba_types::DmaSoundControlBits

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

Implementations

impl DmaSoundControlBits[src]

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

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

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

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

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

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

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

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

pub fn set_sound_a_right(&mut self, sound_a_right: bool)[src]

pub fn set_sound_a_left(&mut self, sound_a_left: bool)[src]

pub fn set_sound_a_timer1(&mut self, sound_a_timer1: bool)[src]

pub fn set_sound_a_fifo_reset(&mut self, sound_a_fifo_reset: bool)[src]

pub fn set_sound_b_right(&mut self, sound_b_right: bool)[src]

pub fn set_sound_b_left(&mut self, sound_b_left: bool)[src]

pub fn set_sound_b_timer1(&mut self, sound_b_timer1: bool)[src]

pub fn set_sound_b_fifo_reset(&mut self, sound_b_fifo_reset: bool)[src]

Trait Implementations

impl Clone for DmaSoundControlBits[src]

impl Copy for DmaSoundControlBits[src]

impl Debug for DmaSoundControlBits[src]

impl Default for DmaSoundControlBits[src]

impl Eq for DmaSoundControlBits[src]

impl Hash for DmaSoundControlBits[src]

impl Ord for DmaSoundControlBits[src]

impl PartialEq<DmaSoundControlBits> for DmaSoundControlBits[src]

impl PartialOrd<DmaSoundControlBits> for DmaSoundControlBits[src]

impl StructuralEq for DmaSoundControlBits[src]

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