Struct ConnectAckPacket

Source
pub struct ConnectAckPacket {
Show 19 fields pub session_present: bool, pub reason_code: ConnectReason, pub session_expiry_interval: Option<SessionExpiryInterval>, pub receive_maximum: Option<ReceiveMaximum>, pub maximum_qos: Option<MaximumQos>, pub retain_available: Option<RetainAvailable>, pub maximum_packet_size: Option<MaximumPacketSize>, pub assigned_client_identifier: Option<AssignedClientIdentifier>, pub topic_alias_maximum: Option<TopicAliasMaximum>, pub reason_string: Option<ReasonString>, pub user_properties: Vec<UserProperty>, pub wildcard_subscription_available: Option<WildcardSubscriptionAvailable>, pub subscription_identifiers_available: Option<SubscriptionIdentifierAvailable>, pub shared_subscription_available: Option<SharedSubscriptionAvailable>, pub server_keep_alive: Option<ServerKeepAlive>, pub response_information: Option<ResponseInformation>, pub server_reference: Option<ServerReference>, pub authentication_method: Option<AuthenticationMethod>, pub authentication_data: Option<AuthenticationData>,
}

Fields§

§session_present: bool§reason_code: ConnectReason§session_expiry_interval: Option<SessionExpiryInterval>§receive_maximum: Option<ReceiveMaximum>§maximum_qos: Option<MaximumQos>§retain_available: Option<RetainAvailable>§maximum_packet_size: Option<MaximumPacketSize>§assigned_client_identifier: Option<AssignedClientIdentifier>§topic_alias_maximum: Option<TopicAliasMaximum>§reason_string: Option<ReasonString>§user_properties: Vec<UserProperty>§wildcard_subscription_available: Option<WildcardSubscriptionAvailable>§subscription_identifiers_available: Option<SubscriptionIdentifierAvailable>§shared_subscription_available: Option<SharedSubscriptionAvailable>§server_keep_alive: Option<ServerKeepAlive>§response_information: Option<ResponseInformation>§server_reference: Option<ServerReference>§authentication_method: Option<AuthenticationMethod>§authentication_data: Option<AuthenticationData>

Trait Implementations§

Source§

impl Debug for ConnectAckPacket

Source§

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

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

impl PartialEq for ConnectAckPacket

Source§

fn eq(&self, other: &ConnectAckPacket) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PropertySize for ConnectAckPacket

Source§

fn property_size(&self, protocol_version: ProtocolVersion) -> u32

Source§

impl StructuralPartialEq for ConnectAckPacket

Auto Trait Implementations§

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

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

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

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

Source§

type Error = Infallible

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

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

Performs the conversion.
Source§

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

Source§

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

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

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

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V