pub struct Tls {
pub skip_ssl_validation: bool,
pub min_tls_version: String,
pub sslkeylogfile: String,
}Expand description
Outbound TLS client settings.
Fields§
§skip_ssl_validation: boolWhether server certificate validation is skipped.
min_tls_version: StringMinimum TLS version enforced on outbound connections.
sslkeylogfile: StringPath to which TLS session keys are logged, for debugging.
Trait Implementations§
impl StructuralPartialEq for Tls
Auto Trait Implementations§
impl Freeze for Tls
impl RefUnwindSafe for Tls
impl Send for Tls
impl Sync for Tls
impl Unpin for Tls
impl UnwindSafe for Tls
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