pub enum SslVersionConfig {
Single(String),
Range(SslVersionConfigRange),
}
Expand description
Configuration for ssl-version
in http
section
There are two ways to configure:
[http]
ssl-version = "tlsv1.3"
[http]
ssl-version.min = "tlsv1.2"
ssl-version.max = "tlsv1.3"
Variants
Single(String)
Range(SslVersionConfigRange)
Trait Implementations
sourceimpl Clone for SslVersionConfig
impl Clone for SslVersionConfig
sourcefn clone(&self) -> SslVersionConfig
fn clone(&self) -> SslVersionConfig
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for SslVersionConfig
impl Debug for SslVersionConfig
sourceimpl<'de> Deserialize<'de> for SslVersionConfig
impl<'de> Deserialize<'de> for SslVersionConfig
sourcefn 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
sourceimpl PartialEq<SslVersionConfig> for SslVersionConfig
impl PartialEq<SslVersionConfig> for SslVersionConfig
sourcefn eq(&self, other: &SslVersionConfig) -> bool
fn eq(&self, other: &SslVersionConfig) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &SslVersionConfig) -> bool
fn ne(&self, other: &SslVersionConfig) -> bool
This method tests for !=
.
impl StructuralPartialEq for SslVersionConfig
Auto Trait Implementations
impl RefUnwindSafe for SslVersionConfig
impl Send for SslVersionConfig
impl Sync for SslVersionConfig
impl Unpin for SslVersionConfig
impl UnwindSafe for SslVersionConfig
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more