pub trait RootCertStoreProvider: Send + Sync {
    // Required method
    fn get_or_try_init(&self) -> Result<&RootCertStore, AnyError>;
}
Expand description

Lazily resolves the root cert store.

This was done because the root cert store is not needed in all cases and takes a bit of time to initialize.

Required Methods§

Implementors§