#[repr(C)]
pub struct esp_mqtt_event_t {
Show 15 fields pub event_id: esp_mqtt_event_id_t, pub client: esp_mqtt_client_handle_t, pub data: *mut c_char, pub data_len: c_int, pub total_data_len: c_int, pub current_data_offset: c_int, pub topic: *mut c_char, pub topic_len: c_int, pub msg_id: c_int, pub session_present: c_int, pub error_handle: *mut esp_mqtt_error_codes_t, pub retain: bool, pub qos: c_int, pub dup: bool, pub protocol_ver: esp_mqtt_protocol_ver_t,
}
Expand description

MQTT event configuration structure

Fields§

§event_id: esp_mqtt_event_id_t

< MQTT event type

§client: esp_mqtt_client_handle_t

< MQTT client handle for this event

§data: *mut c_char

< Data associated with this event

§data_len: c_int

< Length of the data for this event

§total_data_len: c_int

< Total length of the data (longer data are supplied with multiple events)

§current_data_offset: c_int

< Actual offset for the data associated with this event

§topic: *mut c_char

< Topic associated with this event

§topic_len: c_int

< Length of the topic for this event associated with this event

§msg_id: c_int

< MQTT messaged id of message

§session_present: c_int

< MQTT session_present flag for connection event

§error_handle: *mut esp_mqtt_error_codes_t

< esp-mqtt error handle including esp-tls errors as well as internal MQTT errors

§retain: bool

< Retained flag of the message associated with this event

§qos: c_int

< QoS of the messages associated with this event

§dup: bool

< dup flag of the message associated with this event

§protocol_ver: esp_mqtt_protocol_ver_t

< MQTT protocol version used for connection, defaults to value from menuconfig

Trait Implementations§

source§

impl Clone for esp_mqtt_event_t

source§

fn clone(&self) -> esp_mqtt_event_t

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 esp_mqtt_event_t

source§

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

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

impl Default for esp_mqtt_event_t

source§

fn default() -> Self

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

impl Copy for esp_mqtt_event_t

Auto Trait Implementations§

§

impl RefUnwindSafe for esp_mqtt_event_t

§

impl !Send for esp_mqtt_event_t

§

impl !Sync for esp_mqtt_event_t

§

impl Unpin for esp_mqtt_event_t

§

impl UnwindSafe for esp_mqtt_event_t

Blanket Implementations§

§

impl<T> Any for T
where T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Borrow<T> for T
where T: ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<T> BorrowMut<T> for T
where T: ?Sized,

§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, U> Into<U> for T
where U: From<T>,

§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.