Struct esp_idf_sys::wifi_prov_config_handlers
source · #[repr(C)]pub struct wifi_prov_config_handlers {
pub get_status_handler: Option<unsafe extern "C" fn(resp_data: *mut wifi_prov_config_get_data_t, ctx: *mut *mut wifi_prov_ctx_t) -> esp_err_t>,
pub set_config_handler: Option<unsafe extern "C" fn(req_data: *const wifi_prov_config_set_data_t, ctx: *mut *mut wifi_prov_ctx_t) -> esp_err_t>,
pub apply_config_handler: Option<unsafe extern "C" fn(ctx: *mut *mut wifi_prov_ctx_t) -> esp_err_t>,
pub ctx: *mut wifi_prov_ctx_t,
}
Expand description
@brief Internal handlers for receiving and responding to protocomm requests from master
This is to be passed as priv_data for protocomm request handler
(refer to wifi_prov_config_data_handler()
) when calling protocomm_add_endpoint()
.
Fields§
§get_status_handler: Option<unsafe extern "C" fn(resp_data: *mut wifi_prov_config_get_data_t, ctx: *mut *mut wifi_prov_ctx_t) -> esp_err_t>
Handler function called when connection status of the slave (in WiFi station mode) is requested
set_config_handler: Option<unsafe extern "C" fn(req_data: *const wifi_prov_config_set_data_t, ctx: *mut *mut wifi_prov_ctx_t) -> esp_err_t>
Handler function called when WiFi connection configuration (eg. AP SSID, password, etc.) of the slave (in WiFi station mode) is to be set to user provided values
apply_config_handler: Option<unsafe extern "C" fn(ctx: *mut *mut wifi_prov_ctx_t) -> esp_err_t>
Handler function for applying the configuration that was set in
set_config_handler
. After applying the station may get connected to
the AP or may fail to connect. The slave must be ready to convey the
updated connection status information when get_status_handler
is
invoked again by the master.
ctx: *mut wifi_prov_ctx_t
Context pointer to be passed to above handler functions upon invocation
Trait Implementations§
source§impl Clone for wifi_prov_config_handlers
impl Clone for wifi_prov_config_handlers
source§fn clone(&self) -> wifi_prov_config_handlers
fn clone(&self) -> wifi_prov_config_handlers
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for wifi_prov_config_handlers
impl Debug for wifi_prov_config_handlers
source§impl Default for wifi_prov_config_handlers
impl Default for wifi_prov_config_handlers
impl Copy for wifi_prov_config_handlers
Auto Trait Implementations§
impl Freeze for wifi_prov_config_handlers
impl RefUnwindSafe for wifi_prov_config_handlers
impl !Send for wifi_prov_config_handlers
impl !Sync for wifi_prov_config_handlers
impl Unpin for wifi_prov_config_handlers
impl UnwindSafe for wifi_prov_config_handlers
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
§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)
clone_to_uninit
)§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)
clone_to_uninit
)