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§
Source§impl Clone for SslVersionConfig
impl Clone for SslVersionConfig
Source§fn clone(&self) -> SslVersionConfig
fn clone(&self) -> SslVersionConfig
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 SslVersionConfig
impl Debug for SslVersionConfig
Source§impl<'de> Deserialize<'de> for SslVersionConfig
impl<'de> Deserialize<'de> for SslVersionConfig
Source§fn 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
Source§impl PartialEq for SslVersionConfig
impl PartialEq for SslVersionConfig
impl StructuralPartialEq for SslVersionConfig
Auto Trait Implementations§
impl Freeze for SslVersionConfig
impl RefUnwindSafe for SslVersionConfig
impl Send for SslVersionConfig
impl Sync for SslVersionConfig
impl Unpin for SslVersionConfig
impl UnsafeUnpin for SslVersionConfig
impl UnwindSafe for SslVersionConfig
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