Struct esp_idf_sys::esp_partition_t
source · #[repr(C)]pub struct esp_partition_t {
pub flash_chip: *mut esp_flash_t,
pub type_: esp_partition_type_t,
pub subtype: esp_partition_subtype_t,
pub address: u32,
pub size: u32,
pub erase_size: u32,
pub label: [c_char; 17],
pub encrypted: bool,
pub readonly: bool,
}
Expand description
@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
erase_size: u32
< size the erase operation should be aligned to
label: [c_char; 17]
< partition label, zero-terminated ASCII string
encrypted: bool
< flag is set to true if partition is encrypted
readonly: bool
< flag is set to true if partition is read-only
Trait Implementations§
source§impl Clone for esp_partition_t
impl Clone for esp_partition_t
source§fn clone(&self) -> esp_partition_t
fn clone(&self) -> esp_partition_t
Returns a copy of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for esp_partition_t
impl Debug for esp_partition_t
source§impl Default for esp_partition_t
impl Default for esp_partition_t
impl Copy for esp_partition_t
Auto Trait Implementations§
impl Freeze for esp_partition_t
impl RefUnwindSafe for esp_partition_t
impl !Send for esp_partition_t
impl !Sync for esp_partition_t
impl Unpin for esp_partition_t
impl UnwindSafe for esp_partition_t
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)