pub struct SslVersion(/* private fields */);
Expand description
An SSL/TLS protocol version.
Implementations§
Source§impl SslVersion
impl SslVersion
Sourcepub const SSL3: SslVersion
pub const SSL3: SslVersion
SSLv3
Sourcepub const TLS1: SslVersion
pub const TLS1: SslVersion
TLSv1.0
Sourcepub const TLS1_1: SslVersion
pub const TLS1_1: SslVersion
TLSv1.1
Sourcepub const TLS1_2: SslVersion
pub const TLS1_2: SslVersion
TLSv1.2
Sourcepub const TLS1_3: SslVersion
pub const TLS1_3: SslVersion
TLSv1.3
Requires BoringSSL or OpenSSL 1.1.1 or LibreSSL 3.4.0 or newer.
Sourcepub const DTLS1: SslVersion
pub const DTLS1: SslVersion
DTLSv1.0
DTLS 1.0 corresponds to TLS 1.1.
Sourcepub const DTLS1_2: SslVersion
pub const DTLS1_2: SslVersion
DTLSv1.2
DTLS 1.2 corresponds to TLS 1.2 to harmonize versions. There was never a DTLS 1.1.
Trait Implementations§
Source§impl Clone for SslVersion
impl Clone for SslVersion
Source§fn clone(&self) -> SslVersion
fn clone(&self) -> SslVersion
Returns a copy 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 SslVersion
impl Debug for SslVersion
Source§impl PartialEq for SslVersion
impl PartialEq for SslVersion
impl Copy for SslVersion
impl Eq for SslVersion
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 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