pub enum ChannelState {
Initial,
Connected,
Closing,
Closed,
Error,
SendingContent(usize),
WillReceiveContent(Option<ShortString>, Option<ShortString>),
ReceivingContent(Option<ShortString>, Option<ShortString>, usize),
}
๐Deprecated: use lapin instead
Variantsยง
Initial
๐Deprecated: use lapin instead
Connected
๐Deprecated: use lapin instead
Closing
๐Deprecated: use lapin instead
Closed
๐Deprecated: use lapin instead
Error
๐Deprecated: use lapin instead
SendingContent(usize)
๐Deprecated: use lapin instead
WillReceiveContent(Option<ShortString>, Option<ShortString>)
๐Deprecated: use lapin instead
ReceivingContent(Option<ShortString>, Option<ShortString>, usize)
๐Deprecated: use lapin instead
Trait Implementationsยง
Sourceยงimpl Clone for ChannelState
impl Clone for ChannelState
Sourceยงfn clone(&self) -> ChannelState
fn clone(&self) -> ChannelState
Returns a copy 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 moreSourceยงimpl Debug for ChannelState
impl Debug for ChannelState
Sourceยงimpl Default for ChannelState
impl Default for ChannelState
Sourceยงimpl PartialEq for ChannelState
impl PartialEq for ChannelState
impl Eq for ChannelState
impl StructuralPartialEq for ChannelState
Auto Trait Implementationsยง
impl Freeze for ChannelState
impl RefUnwindSafe for ChannelState
impl Send for ChannelState
impl Sync for ChannelState
impl Unpin for ChannelState
impl UnwindSafe for ChannelState
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