Enum lapin_async::connection::ConnectingState
source · pub enum ConnectingState {
Initial,
SentProtocolHeader,
ReceivedStart,
SentStartOk,
ReceivedSecure,
SentSecure,
ReceivedSecondSecure,
ReceivedTune,
SentTuneOk,
SentOpen,
Error,
}
Variants
Initial
SentProtocolHeader
ReceivedStart
SentStartOk
ReceivedSecure
SentSecure
ReceivedSecondSecure
ReceivedTune
SentTuneOk
SentOpen
Error
Trait Implementations
sourceimpl Clone for ConnectingState
impl Clone for ConnectingState
sourcefn clone(&self) -> ConnectingState
fn clone(&self) -> ConnectingState
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ConnectingState
impl Debug for ConnectingState
sourceimpl PartialEq<ConnectingState> for ConnectingState
impl PartialEq<ConnectingState> for ConnectingState
sourcefn eq(&self, other: &ConnectingState) -> bool
fn eq(&self, other: &ConnectingState) -> bool
impl Copy for ConnectingState
impl Eq for ConnectingState
impl StructuralEq for ConnectingState
impl StructuralPartialEq for ConnectingState
Auto Trait Implementations
impl RefUnwindSafe for ConnectingState
impl Send for ConnectingState
impl Sync for ConnectingState
impl Unpin for ConnectingState
impl UnwindSafe for ConnectingState
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more