Unverified Commit 65a34179 authored by Steven Fackler's avatar Steven Fackler Committed by GitHub
Browse files

Merge pull request #1288 from sgg/sgg/impl-Debug-SslConnector

Adds Debug derive for SslConnector
parents f658458c d5be3e57
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -56,7 +56,7 @@ fn ctx(method: SslMethod) -> Result<SslContextBuilder, ErrorStack> {
///
/// OpenSSL's built in hostname verification is used when linking against OpenSSL 1.0.2 or 1.1.0,
/// and a custom implementation is used when linking against OpenSSL 1.0.1.
#[derive(Clone)]
#[derive(Clone, Debug)]
pub struct SslConnector(SslContext);

impl SslConnector {