pub trait PqcClientConfig {
// Required method
fn with_pqc_config(self, config: Arc<PqcConfig>) -> Self;
}
Expand description
Extension trait for rustls ClientConfig
Required Methods§
Sourcefn with_pqc_config(self, config: Arc<PqcConfig>) -> Self
fn with_pqc_config(self, config: Arc<PqcConfig>) -> Self
Configure PQC negotiation for the client
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.