[][src]Struct esp_idf_sys::soc_memory_type_desc_t

#[repr(C)]
pub struct soc_memory_type_desc_t {
    pub name: *const c_char,
    pub caps: [u32; 3],
    pub aliased_iram: bool,
    pub startup_stack: bool,
}

Fields

name: *const c_char

< Name of this memory type

caps: [u32; 3]

< Capabilities for this memory type (as a prioritised set)

aliased_iram: bool

< If true, this is data memory that is is also mapped in IRAM

startup_stack: bool

< If true, memory of this type is used for ROM stack during startup

Trait Implementations

impl Debug for soc_memory_type_desc_t[src]

impl Copy for soc_memory_type_desc_t[src]

impl Clone for soc_memory_type_desc_t[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

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> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]