Coverage Report

Created: 2026-08-14 07:05

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/rust/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-native-certs-0.8.4/src/unix.rs
Line
Count
Source
1
use crate::{CertPaths, CertificateResult};
2
3
0
pub fn load_native_certs() -> CertificateResult {
4
0
    let likely_locations = openssl_probe::probe();
5
0
    CertPaths {
6
0
        file: likely_locations.cert_file,
7
0
        dirs: likely_locations.cert_dir,
8
0
    }
9
0
    .load()
10
0
}