pub struct SslValidation {
pub ssl_available: bool,
pub protocol_version: String,
pub cipher_suite: String,
}Available on crate feature
domain-validator only.Fields§
§ssl_available: bool§protocol_version: String§cipher_suite: StringTrait Implementations§
Source§impl Clone for SslValidation
impl Clone for SslValidation
Source§fn clone(&self) -> SslValidation
fn clone(&self) -> SslValidation
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 moreSource§impl Debug for SslValidation
impl Debug for SslValidation
Source§impl<'de> Deserialize<'de> for SslValidation
impl<'de> Deserialize<'de> for SslValidation
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
Auto Trait Implementations§
impl Freeze for SslValidation
impl RefUnwindSafe for SslValidation
impl Send for SslValidation
impl Sync for SslValidation
impl Unpin for SslValidation
impl UnsafeUnpin for SslValidation
impl UnwindSafe for SslValidation
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