pub enum NegotiationState {
Initial,
CapabilitiesSent,
CapabilitiesReceived,
SchemaSelected,
Ready,
Failed(String),
}Expand description
Negotiation state for the state machine
Variants§
Initial
Initial state before negotiation starts
CapabilitiesSent
Capabilities message sent, waiting for acknowledgment
CapabilitiesReceived
Capabilities received from remote party
SchemaSelected
Schema selected, waiting for ready confirmation
Ready
Negotiation complete and ready for communication
Failed(String)
Negotiation failed with error message
Trait Implementations§
Source§impl Clone for NegotiationState
impl Clone for NegotiationState
Source§fn clone(&self) -> NegotiationState
fn clone(&self) -> NegotiationState
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 moreSource§impl Debug for NegotiationState
impl Debug for NegotiationState
Source§impl PartialEq for NegotiationState
impl PartialEq for NegotiationState
impl Eq for NegotiationState
impl StructuralPartialEq for NegotiationState
Auto Trait Implementations§
impl Freeze for NegotiationState
impl RefUnwindSafe for NegotiationState
impl Send for NegotiationState
impl Sync for NegotiationState
impl Unpin for NegotiationState
impl UnwindSafe for NegotiationState
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.