[][src]Enum esp_idf_bindgen::spi_flash_mmap_memory_t

#[repr(u32)]pub enum spi_flash_mmap_memory_t {
    SPI_FLASH_MMAP_DATA,
    SPI_FLASH_MMAP_INST,
}

@brief Enumeration which specifies memory space requested in an mmap call

Variants

SPI_FLASH_MMAP_DATA

< map to data memory (Vaddr0), allows byte-aligned access, 4 MB total

SPI_FLASH_MMAP_INST

< map to instruction memory (Vaddr1-3), allows only 4-byte-aligned access, 11 MB total

Trait Implementations

impl Clone for spi_flash_mmap_memory_t[src]

impl Copy for spi_flash_mmap_memory_t[src]

impl Debug for spi_flash_mmap_memory_t[src]

impl Eq for spi_flash_mmap_memory_t[src]

impl Hash for spi_flash_mmap_memory_t[src]

impl PartialEq<spi_flash_mmap_memory_t> for spi_flash_mmap_memory_t[src]

impl StructuralEq for spi_flash_mmap_memory_t[src]

impl StructuralPartialEq for spi_flash_mmap_memory_t[src]

Auto Trait Implementations

impl Send for spi_flash_mmap_memory_t

impl Sync for spi_flash_mmap_memory_t

impl Unpin for spi_flash_mmap_memory_t

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.