Struct esp_idf_sys::wifi_prov_scheme
source · [−]#[repr(C)]pub struct wifi_prov_scheme {
pub prov_start: Option<unsafe extern "C" fn(pc: *mut protocomm_t, config: *mut c_void) -> esp_err_t>,
pub prov_stop: Option<unsafe extern "C" fn(pc: *mut protocomm_t) -> esp_err_t>,
pub new_config: Option<unsafe extern "C" fn() -> *mut c_void>,
pub delete_config: Option<unsafe extern "C" fn(config: *mut c_void)>,
pub set_config_service: Option<unsafe extern "C" fn(config: *mut c_void, service_name: *const c_char, service_key: *const c_char) -> esp_err_t>,
pub set_config_endpoint: Option<unsafe extern "C" fn(config: *mut c_void, endpoint_name: *const c_char, uuid: u16) -> esp_err_t>,
pub wifi_mode: wifi_mode_t,
}
Expand description
@brief Structure for specifying the provisioning scheme to be followed by the manager
@note Ready to use schemes are available: - wifi_prov_scheme_ble : for provisioning over BLE transport + GATT server - wifi_prov_scheme_softap : for provisioning over SoftAP transport + HTTP server - wifi_prov_scheme_console : for provisioning over Serial UART transport + Console (for debugging)
Fields
prov_start: Option<unsafe extern "C" fn(pc: *mut protocomm_t, config: *mut c_void) -> esp_err_t>
Function which is to be called by the manager when it is to start the provisioning service associated with a protocomm instance and a scheme specific configuration
prov_stop: Option<unsafe extern "C" fn(pc: *mut protocomm_t) -> esp_err_t>
Function which is to be called by the manager to stop the provisioning service previously associated with a protocomm instance
new_config: Option<unsafe extern "C" fn() -> *mut c_void>
Function which is to be called by the manager to generate a new configuration for the provisioning service, that is to be passed to prov_start()
delete_config: Option<unsafe extern "C" fn(config: *mut c_void)>
Function which is to be called by the manager to delete a configuration generated using new_config()
set_config_service: Option<unsafe extern "C" fn(config: *mut c_void, service_name: *const c_char, service_key: *const c_char) -> esp_err_t>
Function which is to be called by the manager to set the service name and key values in the configuration structure
set_config_endpoint: Option<unsafe extern "C" fn(config: *mut c_void, endpoint_name: *const c_char, uuid: u16) -> esp_err_t>
Function which is to be called by the manager to set a protocomm endpoint with an identifying name and UUID in the configuration structure
wifi_mode: wifi_mode_t
Sets mode of operation of Wi-Fi during provisioning This is set to :
- WIFI_MODE_APSTA for SoftAP transport
- WIFI_MODE_STA for BLE transport
Trait Implementations
sourceimpl Clone for wifi_prov_scheme
impl Clone for wifi_prov_scheme
sourcefn clone(&self) -> wifi_prov_scheme
fn clone(&self) -> wifi_prov_scheme
Returns a copy of the value. Read more
1.0.0fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for wifi_prov_scheme
impl Debug for wifi_prov_scheme
sourceimpl Default for wifi_prov_scheme
impl Default for wifi_prov_scheme
impl Copy for wifi_prov_scheme
Auto Trait Implementations
impl RefUnwindSafe for wifi_prov_scheme
impl Send for wifi_prov_scheme
impl Sync for wifi_prov_scheme
impl Unpin for wifi_prov_scheme
impl UnwindSafe for wifi_prov_scheme
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
fn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
Uses borrowed data to replace owned data, usually by cloning. Read more