[][src]Enum stm32f3xx_hal_v2::pac::syscfg::cfgr1::MEM_MODE_A

#[repr(u8)]pub enum MEM_MODE_A {
    MAINFLASH,
    SYSTEMFLASH,
    SRAM,
    FMC,
}

Memory mapping selection bits

Value on reset: 0

Variants

MAINFLASH

0: Main Flash memory mapped at 0x0000_0000

SYSTEMFLASH

1: System Flash memory mapped at 0x0000_0000

SRAM

3: Embedded SRAM mapped at 0x0000_0000

FMC

4: FMC Bank (Only the first two banks) (Available on STM32F303xD/E only)

Trait Implementations

impl Clone for MEM_MODE_A[src]

impl Copy for MEM_MODE_A[src]

impl Debug for MEM_MODE_A[src]

impl PartialEq<MEM_MODE_A> for MEM_MODE_A[src]

impl StructuralPartialEq for MEM_MODE_A[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> Same<T> for T

type Output = T

Should always be Self

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.