pub enum MqttStream<Io> {
V3(MqttStream<Io>),
V5(MqttStream<Io>),
}
Expand description
MQTT protocol implementations and stream handling Version-specific MQTT protocol streams
Variants§
Auto Trait Implementations§
impl<Io> !Freeze for MqttStream<Io>
impl<Io> !RefUnwindSafe for MqttStream<Io>
impl<Io> Send for MqttStream<Io>where
Io: Send,
impl<Io> !Sync for MqttStream<Io>
impl<Io> Unpin for MqttStream<Io>where
Io: Unpin,
impl<Io> UnwindSafe for MqttStream<Io>where
Io: UnwindSafe,
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