Closed pbor closed 4 years ago
The docs say
To create a TlsConnector with a non-default configuation, create a rusttls::ClientConfig and call .into() on it.
But the From trait is implmented for Arc<ClientConfig>
From
Arc<ClientConfig>
Fixed by 331ac2f. The comment is now correct, by adding the From implementation.
The docs say
But the
From
trait is implmented forArc<ClientConfig>