pub enum HandshakeStatus {
Ok,
Error,
}Expand description
Typed status for handshake responses. Using an enum instead of a raw string prevents typo-induced mismatches between client and server.
Variants§
Trait Implementations§
Source§impl Clone for HandshakeStatus
impl Clone for HandshakeStatus
Source§fn clone(&self) -> HandshakeStatus
fn clone(&self) -> HandshakeStatus
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 HandshakeStatus
impl Debug for HandshakeStatus
Source§impl<'de> Deserialize<'de> for HandshakeStatus
impl<'de> Deserialize<'de> for HandshakeStatus
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for HandshakeStatus
impl PartialEq for HandshakeStatus
Source§fn eq(&self, other: &HandshakeStatus) -> bool
fn eq(&self, other: &HandshakeStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for HandshakeStatus
impl Serialize for HandshakeStatus
impl Copy for HandshakeStatus
impl Eq for HandshakeStatus
impl StructuralPartialEq for HandshakeStatus
Auto Trait Implementations§
impl Freeze for HandshakeStatus
impl RefUnwindSafe for HandshakeStatus
impl Send for HandshakeStatus
impl Sync for HandshakeStatus
impl Unpin for HandshakeStatus
impl UnsafeUnpin for HandshakeStatus
impl UnwindSafe for HandshakeStatus
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.