27 releases

0.12.1 Nov 25, 2024
0.9.0 Apr 28, 2022
0.7.0 Oct 26, 2021
0.5.0 Feb 21, 2021
0.1.8 Jun 17, 2017

#1457 in Network programming

Download history 7070/week @ 2024-09-06 6445/week @ 2024-09-13 5058/week @ 2024-09-20 5861/week @ 2024-09-27 6616/week @ 2024-10-04 5470/week @ 2024-10-11 6107/week @ 2024-10-18 5097/week @ 2024-10-25 5640/week @ 2024-11-01 4787/week @ 2024-11-08 4438/week @ 2024-11-15 3860/week @ 2024-11-22 4281/week @ 2024-11-29 4278/week @ 2024-12-06 3737/week @ 2024-12-13 2213/week @ 2024-12-20

14,990 downloads per month
Used in 23 crates (6 directly)

MIT/Apache

76KB
1.5K SLoC

tls-api-stub

Stub implementation of tls-api. All operations return an error.

Useful when you need an implementation of type like TlsConnector, but you do not intend to use it.

E. g.

fn connect<C : tls_api::TlsConnector>(host: &str, use_tls: bool) { ... }

So if the function is to be used without TLS, it can be called with stub implementation:

connect::<tls_api_stub::TlsConnector>("database", false);

lib.rs:

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_2::TlsConnector;

let no_connector: Option<TlsConnector> = None;

Dependencies

~2–13MB
~168K SLoC