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

Adds Debug derive for SslConnector
This commit is contained in:
Steven Fackler 2020-06-05 18:27:12 -04:00 committed by GitHub
commit 65a3417994
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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 {