pub trait NotSpecImpl: Not {
// Required methods
exec fn obeys_not_spec() -> bool;
exec fn not_req(self) -> bool
where Self: Sized;
exec fn not_spec(self) -> Self::Output
where Self: Sized;
}
Required Methods§
Sourceexec fn obeys_not_spec() -> bool
exec fn obeys_not_spec() -> bool
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.