[][src]Struct gba_types::DmaControlSetting

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

Implementations

impl DmaControlSetting[src]

#[must_use]pub fn dst_addr_control(self) -> DmaDestinationAddressControl[src]

#[must_use]pub fn src_addr_control(self) -> DmaSourceAddressControl[src]

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

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

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

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

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

pub fn set_dst_addr_control(
    &mut self,
    dst_addr_control: DmaDestinationAddressControl
)
[src]

pub fn set_src_addr_control(
    &mut self,
    src_addr_control: DmaSourceAddressControl
)
[src]

pub fn set_repeating(&mut self, repeating: bool)[src]

pub fn set_transfer32(&mut self, transfer32: bool)[src]

pub fn set_start_timing(&mut self, start_timing: u16)[src]

pub fn set_interrupt_when_complete(&mut self, interrupt_when_complete: bool)[src]

pub fn set_enabled(&mut self, enabled: bool)[src]

Trait Implementations

impl Clone for DmaControlSetting[src]

impl Copy for DmaControlSetting[src]

impl Debug for DmaControlSetting[src]

impl Default for DmaControlSetting[src]

impl Eq for DmaControlSetting[src]

impl Hash for DmaControlSetting[src]

impl Ord for DmaControlSetting[src]

impl PartialEq<DmaControlSetting> for DmaControlSetting[src]

impl PartialOrd<DmaControlSetting> for DmaControlSetting[src]

impl StructuralEq for DmaControlSetting[src]

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