#[repr(u32)]pub enum mqtt5_property_type {
MQTT_PROP_TYPE_BYTE = 1,
MQTT_PROP_TYPE_INT16 = 2,
MQTT_PROP_TYPE_INT32 = 3,
MQTT_PROP_TYPE_VARINT = 4,
MQTT_PROP_TYPE_BINARY = 5,
MQTT_PROP_TYPE_STRING = 6,
MQTT_PROP_TYPE_STRING_PAIR = 7,
}Variants§
MQTT_PROP_TYPE_BYTE = 1
MQTT_PROP_TYPE_INT16 = 2
MQTT_PROP_TYPE_INT32 = 3
MQTT_PROP_TYPE_VARINT = 4
MQTT_PROP_TYPE_BINARY = 5
MQTT_PROP_TYPE_STRING = 6
MQTT_PROP_TYPE_STRING_PAIR = 7
Trait Implementations§
Source§impl Clone for mqtt5_property_type
impl Clone for mqtt5_property_type
Source§fn clone(&self) -> mqtt5_property_type
fn clone(&self) -> mqtt5_property_type
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for mqtt5_property_type
impl Debug for mqtt5_property_type
Source§impl Hash for mqtt5_property_type
impl Hash for mqtt5_property_type
Source§impl PartialEq for mqtt5_property_type
impl PartialEq for mqtt5_property_type
impl Copy for mqtt5_property_type
impl Eq for mqtt5_property_type
impl StructuralPartialEq for mqtt5_property_type
Auto Trait Implementations§
impl Freeze for mqtt5_property_type
impl RefUnwindSafe for mqtt5_property_type
impl Send for mqtt5_property_type
impl Sync for mqtt5_property_type
impl Unpin for mqtt5_property_type
impl UnwindSafe for mqtt5_property_type
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more