Struct stm32wlxx_hal::dma::Dma2

source ·
pub struct Dma2 {
    pub c1: Dma2Ch1,
    pub c2: Dma2Ch2,
    pub c3: Dma2Ch3,
    pub c4: Dma2Ch4,
    pub c5: Dma2Ch5,
    pub c6: Dma2Ch6,
    pub c7: Dma2Ch7,
}
Expand description

All DMA controller 2 channels.

Fields§

§c1: Dma2Ch1

DMA controller 2 channel 1

§c2: Dma2Ch2

DMA controller 2 channel 2

§c3: Dma2Ch3

DMA controller 2 channel 3

§c4: Dma2Ch4

DMA controller 2 channel 4

§c5: Dma2Ch5

DMA controller 2 channel 5

§c6: Dma2Ch6

DMA controller 2 channel 6

§c7: Dma2Ch7

DMA controller 2 channel 7

Trait Implementations§

source§

impl Debug for Dma2

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl RefUnwindSafe for Dma2

§

impl Send for Dma2

§

impl Sync for Dma2

§

impl Unpin for Dma2

§

impl UnwindSafe for Dma2

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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 Twhere 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 Twhere 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.