pub enum SslResponse {
Accepted,
Rejected,
}Expand description
The initial response to an SSLRequest: ‘S’ (supports) or ‘N’ (doesn’t).
Variants§
Trait Implementations§
Source§impl Clone for SslResponse
impl Clone for SslResponse
Source§fn clone(&self) -> SslResponse
fn clone(&self) -> SslResponse
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 SslResponse
impl Debug for SslResponse
Source§impl PartialEq for SslResponse
impl PartialEq for SslResponse
impl Copy for SslResponse
impl Eq for SslResponse
impl StructuralPartialEq for SslResponse
Auto Trait Implementations§
impl Freeze for SslResponse
impl RefUnwindSafe for SslResponse
impl Send for SslResponse
impl Sync for SslResponse
impl Unpin for SslResponse
impl UnsafeUnpin for SslResponse
impl UnwindSafe for SslResponse
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.