Struct stm32f4xx_hal::timer::DMAR

source ·
pub struct DMAR<T>(/* private fields */);
Expand description

Wrapper type that indicates which register of the contained timer to use for DMA.

Trait Implementations§

source§

impl PeriAddress for DMAR<TIM1>

source§

fn address(&self) -> u32

Returns the address to be used by the DMA stream.
§

type MemSize = u32

Memory size of the peripheral.
source§

impl PeriAddress for DMAR<TIM2>

source§

fn address(&self) -> u32

Returns the address to be used by the DMA stream.
§

type MemSize = u16

Memory size of the peripheral.
source§

impl PeriAddress for DMAR<TIM3>

source§

fn address(&self) -> u32

Returns the address to be used by the DMA stream.
§

type MemSize = u16

Memory size of the peripheral.
source§

impl PeriAddress for DMAR<TIM4>

source§

fn address(&self) -> u32

Returns the address to be used by the DMA stream.
§

type MemSize = u16

Memory size of the peripheral.
source§

impl PeriAddress for DMAR<TIM5>

source§

fn address(&self) -> u32

Returns the address to be used by the DMA stream.
§

type MemSize = u16

Memory size of the peripheral.
source§

impl PeriAddress for DMAR<TIM8>

source§

fn address(&self) -> u32

Returns the address to be used by the DMA stream.
§

type MemSize = u32

Memory size of the peripheral.
source§

impl DMASet<StreamX<DMA1, 0>, 6, MemoryToPeripheral> for DMAR<TIM5>

source§

impl DMASet<StreamX<DMA1, 0>, 6, PeripheralToMemory> for DMAR<TIM5>

source§

impl DMASet<StreamX<DMA1, 1>, 3, MemoryToPeripheral> for DMAR<TIM2>

source§

impl DMASet<StreamX<DMA1, 1>, 3, PeripheralToMemory> for DMAR<TIM2>

source§

impl DMASet<StreamX<DMA1, 1>, 6, MemoryToPeripheral> for DMAR<TIM5>

source§

impl DMASet<StreamX<DMA1, 1>, 6, PeripheralToMemory> for DMAR<TIM5>

source§

impl DMASet<StreamX<DMA1, 2>, 5, MemoryToPeripheral> for DMAR<TIM3>

source§

impl DMASet<StreamX<DMA1, 2>, 5, PeripheralToMemory> for DMAR<TIM3>

source§

impl DMASet<StreamX<DMA1, 3>, 6, MemoryToPeripheral> for DMAR<TIM5>

source§

impl DMASet<StreamX<DMA1, 3>, 6, PeripheralToMemory> for DMAR<TIM5>

source§

impl DMASet<StreamX<DMA1, 4>, 5, MemoryToPeripheral> for DMAR<TIM3>

source§

impl DMASet<StreamX<DMA1, 4>, 5, PeripheralToMemory> for DMAR<TIM3>

source§

impl DMASet<StreamX<DMA1, 6>, 2, MemoryToPeripheral> for DMAR<TIM4>

source§

impl DMASet<StreamX<DMA1, 6>, 2, PeripheralToMemory> for DMAR<TIM4>

source§

impl DMASet<StreamX<DMA1, 6>, 6, MemoryToPeripheral> for DMAR<TIM5>

source§

impl DMASet<StreamX<DMA1, 6>, 6, PeripheralToMemory> for DMAR<TIM5>

source§

impl DMASet<StreamX<DMA1, 7>, 3, MemoryToPeripheral> for DMAR<TIM2>

source§

impl DMASet<StreamX<DMA1, 7>, 3, PeripheralToMemory> for DMAR<TIM2>

source§

impl DMASet<StreamX<DMA2, 0>, 6, MemoryToPeripheral> for DMAR<TIM1>

source§

impl DMASet<StreamX<DMA2, 0>, 6, PeripheralToMemory> for DMAR<TIM1>

source§

impl DMASet<StreamX<DMA2, 1>, 7, MemoryToPeripheral> for DMAR<TIM8>

source§

impl DMASet<StreamX<DMA2, 1>, 7, PeripheralToMemory> for DMAR<TIM8>

source§

impl DMASet<StreamX<DMA2, 4>, 6, MemoryToPeripheral> for DMAR<TIM1>

source§

impl DMASet<StreamX<DMA2, 4>, 6, PeripheralToMemory> for DMAR<TIM1>

source§

impl DMASet<StreamX<DMA2, 5>, 6, MemoryToPeripheral> for DMAR<TIM1>

source§

impl DMASet<StreamX<DMA2, 5>, 6, PeripheralToMemory> for DMAR<TIM1>

source§

impl DMASet<StreamX<DMA2, 7>, 7, MemoryToPeripheral> for DMAR<TIM8>

source§

impl DMASet<StreamX<DMA2, 7>, 7, PeripheralToMemory> for DMAR<TIM8>

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for DMAR<T>
where T: RefUnwindSafe,

§

impl<T> Send for DMAR<T>
where T: Send,

§

impl<T> Sync for DMAR<T>
where T: Sync,

§

impl<T> Unpin for DMAR<T>
where T: Unpin,

§

impl<T> UnwindSafe for DMAR<T>
where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.