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

#1296 in Network programming

Download history 4266/week @ 2024-11-16 3620/week @ 2024-11-23 4495/week @ 2024-11-30 4367/week @ 2024-12-07 3585/week @ 2024-12-14 1947/week @ 2024-12-21 2359/week @ 2024-12-28 3733/week @ 2025-01-04 3814/week @ 2025-01-11 3823/week @ 2025-01-18 3793/week @ 2025-01-25 4141/week @ 2025-02-01 4454/week @ 2025-02-08 4067/week @ 2025-02-15 4516/week @ 2025-02-22 3277/week @ 2025-03-01

16,994 downloads per month
Used in 22 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

~3–14MB
~192K SLoC