Trait hyper_rustls::ConfigBuilderExt

source ·
pub trait ConfigBuilderExt {
    // Required methods
    fn with_native_roots(
        self,
    ) -> Result<ConfigBuilder<ClientConfig, WantsClientCert>, Error>;
    fn with_webpki_roots(self) -> ConfigBuilder<ClientConfig, WantsClientCert>;
}
Expand description

Methods for configuring roots

This adds methods (gated by crate features) for easily configuring TLS server roots a rustls ClientConfig will trust.

Required Methods§

source

fn with_native_roots( self, ) -> Result<ConfigBuilder<ClientConfig, WantsClientCert>, Error>

This configures the platform’s trusted certs, as implemented by rustls-native-certs

This will return an error if no valid certs were found. In that case, it’s recommended to use with_webpki_roots.

source

fn with_webpki_roots(self) -> ConfigBuilder<ClientConfig, WantsClientCert>

This configures the webpki roots, which are Mozilla’s set of trusted roots as packaged by webpki-roots.

Implementations on Foreign Types§

source§

impl ConfigBuilderExt for ConfigBuilder<ClientConfig, WantsVerifier>

Implementors§