tls-api-stub 0.1.6

TLS API implementation that returns error on any operation
Documentation

Stub implementation of TLS API.

All operations return error. No objects can be instantiated.

Can be useful when you need a type parameter of type e. g. TlsConnector:

use tls_api_stub::TlsConnector;

let no_connector: Option<TlsConnector> = None;