esp_idf_sys

Type Alias mbedtls_psa_stats_t

Source
pub type mbedtls_psa_stats_t = mbedtls_psa_stats_s;
Expand description

\brief Statistics about resource consumption related to the PSA keystore.

\note The content of this structure is not part of the stable API and ABI of Mbed TLS and may change arbitrarily from version to version.

Aliased Type§

struct mbedtls_psa_stats_t {
    pub private_volatile_slots: usize,
    pub private_persistent_slots: usize,
    pub private_external_slots: usize,
    pub private_half_filled_slots: usize,
    pub private_cache_slots: usize,
    pub private_empty_slots: usize,
    pub private_locked_slots: usize,
    pub private_max_open_internal_key_id: u32,
    pub private_max_open_external_key_id: u32,
}

Fields§

§private_volatile_slots: usize§private_persistent_slots: usize§private_external_slots: usize§private_half_filled_slots: usize§private_cache_slots: usize§private_empty_slots: usize§private_locked_slots: usize§private_max_open_internal_key_id: u32§private_max_open_external_key_id: u32

Trait Implementations

Source§

impl Clone for mbedtls_psa_stats_s

Source§

fn clone(&self) -> mbedtls_psa_stats_s

Returns a copy of the value. Read more
1.0.0§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for mbedtls_psa_stats_s

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for mbedtls_psa_stats_s

Source§

fn default() -> mbedtls_psa_stats_s

Returns the “default value” for a type. Read more
Source§

impl Copy for mbedtls_psa_stats_s