Enum ntex_mqtt::v5::control::ControlMessage
source · pub enum ControlMessage<E> {
Auth(Auth),
Ping(Ping),
Disconnect(Disconnect),
Subscribe(Subscribe),
Unsubscribe(Unsubscribe),
Closed(Closed),
Error(Error<E>),
ProtocolError(ProtocolError),
PeerGone(PeerGone),
}
Expand description
Control plain messages
Variants§
Auth(Auth)
Auth packet from a client
Ping(Ping)
Ping packet from a client
Disconnect(Disconnect)
Disconnect packet from a client
Subscribe(Subscribe)
Subscribe packet from a client
Unsubscribe(Unsubscribe)
Unsubscribe packet from a client
Closed(Closed)
Underlying transport connection closed
Error(Error<E>)
Unhandled application level error from handshake, publish and control services
ProtocolError(ProtocolError)
Protocol level error
PeerGone(PeerGone)
Peer is gone
Implementations§
source§impl<E> ControlMessage<E>
impl<E> ControlMessage<E>
sourcepub fn disconnect(&self) -> ControlResult
pub fn disconnect(&self) -> ControlResult
Disconnects the client by sending DISCONNECT packet
with NormalDisconnection
reason code.
sourcepub fn disconnect_with(&self, pkt: Disconnect) -> ControlResult
pub fn disconnect_with(&self, pkt: Disconnect) -> ControlResult
Disconnects the client by sending DISCONNECT packet with provided reason code.
Trait Implementations§
Auto Trait Implementations§
impl<E> !RefUnwindSafe for ControlMessage<E>
impl<E> Send for ControlMessage<E>where E: Send,
impl<E> Sync for ControlMessage<E>where E: Sync,
impl<E> Unpin for ControlMessage<E>where E: Unpin,
impl<E> !UnwindSafe for ControlMessage<E>
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