pub enum ConnectType {
Mqtt(MqttConnect),
Mqtts(MqttsConnect),
Ws(WsConnect),
Wss(WssConnect),
Uds(UdsConnect),
Quic(QuicConnect),
}Variants§
Mqtt(MqttConnect)
Mqtts(MqttsConnect)
Ws(WsConnect)
Wss(WssConnect)
Uds(UdsConnect)
Quic(QuicConnect)
Trait Implementations§
Source§impl Clone for ConnectType
impl Clone for ConnectType
Source§fn clone(&self) -> ConnectType
fn clone(&self) -> ConnectType
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 moreAuto Trait Implementations§
impl Freeze for ConnectType
impl RefUnwindSafe for ConnectType
impl Send for ConnectType
impl Sync for ConnectType
impl Unpin for ConnectType
impl UnwindSafe for ConnectType
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