#[repr(C)]pub struct esp_mqtt_client_config_t_network_t {
pub reconnect_timeout_ms: c_int,
pub timeout_ms: c_int,
pub refresh_connection_after_ms: c_int,
pub disable_auto_reconnect: bool,
pub transport: esp_transport_handle_t,
pub if_name: *mut ifreq,
}
Expand description
Network related configuration
Fields§
§reconnect_timeout_ms: c_int
< Reconnect to the broker after this value in miliseconds if auto reconnect is not disabled (defaults to 10s)
timeout_ms: c_int
< Abort network operation if it is not completed after this value, in milliseconds (defaults to 10s).
refresh_connection_after_ms: c_int
< Refresh connection after this value (in milliseconds)
disable_auto_reconnect: bool
< Client will reconnect to server (when errors/disconnect). Set
disable_auto_reconnect=true
to disable
transport: esp_transport_handle_t
< Custom transport handle to use. Warning: The transport should be valid during the client lifetime and is destroyed when esp_mqtt_client_destroy is called.
if_name: *mut ifreq
< The name of interface for data to go through. Use the default interface without setting
Trait Implementations§
source§impl Clone for esp_mqtt_client_config_t_network_t
impl Clone for esp_mqtt_client_config_t_network_t
source§fn clone(&self) -> esp_mqtt_client_config_t_network_t
fn clone(&self) -> esp_mqtt_client_config_t_network_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_mqtt_client_config_t_network_t
impl Debug for esp_mqtt_client_config_t_network_t
source§impl Default for esp_mqtt_client_config_t_network_t
impl Default for esp_mqtt_client_config_t_network_t
impl Copy for esp_mqtt_client_config_t_network_t
Auto Trait Implementations§
impl Freeze for esp_mqtt_client_config_t_network_t
impl RefUnwindSafe for esp_mqtt_client_config_t_network_t
impl !Send for esp_mqtt_client_config_t_network_t
impl !Sync for esp_mqtt_client_config_t_network_t
impl Unpin for esp_mqtt_client_config_t_network_t
impl UnwindSafe for esp_mqtt_client_config_t_network_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
)