pub enum ChannelProtocol {
Websocket,
Mqtt,
Kafka,
Amqp,
}Expand description
Channel protocol type
Variants§
Trait Implementations§
Source§impl Clone for ChannelProtocol
impl Clone for ChannelProtocol
Source§fn clone(&self) -> ChannelProtocol
fn clone(&self) -> ChannelProtocol
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ChannelProtocol
impl Debug for ChannelProtocol
Auto Trait Implementations§
impl Freeze for ChannelProtocol
impl RefUnwindSafe for ChannelProtocol
impl Send for ChannelProtocol
impl Sync for ChannelProtocol
impl Unpin for ChannelProtocol
impl UnsafeUnpin for ChannelProtocol
impl UnwindSafe for ChannelProtocol
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