#[repr(C)]
pub struct esp_mqtt_event_t {
Show 15 fields pub event_id: i32, pub client: *mut esp_mqtt_client, pub data: *mut i8, pub data_len: i32, pub total_data_len: i32, pub current_data_offset: i32, pub topic: *mut i8, pub topic_len: i32, pub msg_id: i32, pub session_present: i32, pub error_handle: *mut esp_mqtt_error_codes, pub retain: bool, pub qos: i32, pub dup: bool, pub protocol_ver: u32,
}
Expand description

MQTT event configuration structure

Fields§

§event_id: i32

< MQTT event type

§client: *mut esp_mqtt_client

< MQTT client handle for this event

§data: *mut i8

< Data associated with this event

§data_len: i32

< Length of the data for this event

§total_data_len: i32

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

§current_data_offset: i32

< Actual offset for the data associated with this event

§topic: *mut i8

< Topic associated with this event

§topic_len: i32

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

§msg_id: i32

< MQTT messaged id of message

§session_present: i32

< MQTT session_present flag for connection event

§error_handle: *mut esp_mqtt_error_codes

< 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: i32

< QoS of the messages associated with this event

§dup: bool

< dup flag of the message associated with this event

§protocol_ver: u32

< 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<(), Error>

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

impl Default for esp_mqtt_event_t

source§

fn default() -> esp_mqtt_event_t

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.