esp_idf_sys

Type Alias psk_hint_key_t

Source
pub type psk_hint_key_t = psk_key_hint;
Expand description

@brief ESP-TLS preshared key and hint structure

Aliased Type§

struct psk_hint_key_t {
    pub key: *const u8,
    pub key_size: usize,
    pub hint: *const i8,
}

Fields§

§key: *const u8

< key in PSK authentication mode in binary format

§key_size: usize

< length of the key

§hint: *const i8

< hint in PSK authentication mode in string format

Trait Implementations

Source§

impl Clone for psk_key_hint

Source§

fn clone(&self) -> psk_key_hint

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 psk_key_hint

Source§

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

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

impl Default for psk_key_hint

Source§

fn default() -> Self

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

impl Copy for psk_key_hint