Trait ExpectTlsFree
pub trait ExpectTlsFree {
type Unwrapped;
// Required method
fn expect_notls(self, msg: &str) -> Self::Unwrapped;
}Required Associated Types§
type Unwrapped
Required Methods§
fn expect_notls(self, msg: &str) -> Self::Unwrapped
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".