pub enum TlsLevel {
MozillaModern,
MozillaModernV5,
MozillaIntermediate,
MozillaIntermediateV5,
}Expand description
Settings corresponding to TLS level based on Mozilla’s server side TLS recommendations. See its documentation for more details on specifics.
Variants§
MozillaModern
Settings corresponding to modern configuration of version 4 of Mozilla’s server side TLS recommendations
MozillaModernV5
Settings corresponding to modern configuration of version 5 of Mozilla’s server side TLS recommendations
MozillaIntermediate
Settings corresponding to the intermediate configuration of version 4 of Mozilla’s server side TLS recommendations
MozillaIntermediateV5
Settings corresponding to the intermediate configuration of version 5 of Mozilla’s server side TLS recommendations
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TlsLevel
impl RefUnwindSafe for TlsLevel
impl Send for TlsLevel
impl Sync for TlsLevel
impl Unpin for TlsLevel
impl UnsafeUnpin for TlsLevel
impl UnwindSafe for TlsLevel
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