pub trait PqcServerConfig {
// Required method
fn with_pqc_config(self, config: Arc<PqcConfig>) -> Self;
}
Expand description
Extension trait for rustls ServerConfig
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 server
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.