#[repr(u32)]pub enum SslVersion {
TLS1 = 0,
TLS1_1 = 1,
TLS1_2 = 2,
TLS1_3 = 3,
}Expand description
Constants for defining minimum/maximum TLS versions for connecting to backends.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for SslVersion
impl Clone for SslVersion
Source§fn clone(&self) -> SslVersion
fn clone(&self) -> SslVersion
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 moreimpl Copy for SslVersion
Source§impl Debug for SslVersion
impl Debug for SslVersion
impl Eq for SslVersion
Source§impl PartialEq for SslVersion
impl PartialEq for SslVersion
Source§fn eq(&self, other: &SslVersion) -> bool
fn eq(&self, other: &SslVersion) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SslVersion
Auto Trait Implementations§
impl Freeze for SslVersion
impl RefUnwindSafe for SslVersion
impl Send for SslVersion
impl Sync for SslVersion
impl Unpin for SslVersion
impl UnsafeUnpin for SslVersion
impl UnwindSafe for SslVersion
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