[−][src]Struct esp_idf_bindgen::esp_partition_t
@brief partition information structure
This is not the format in flash, that format is esp_partition_info_t.
However, this is the format used by this API.
Fields
flash_chip: *mut esp_flash_t< SPI flash chip on which the partition resides
type_: esp_partition_type_t< partition type (app/data)
subtype: esp_partition_subtype_t< partition subtype
address: u32< starting address of the partition in flash
size: u32< size of the partition, in bytes
label: [c_char; 17]< partition label, zero-terminated ASCII string
encrypted: bool< flag is set to true if partition is encrypted
Trait Implementations
impl Clone for esp_partition_t[src]
fn clone(&self) -> esp_partition_t[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for esp_partition_t[src]
impl Debug for esp_partition_t[src]
Auto Trait Implementations
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,