pub trait WithoutVariant<V> {
type Without;
// Required method
fn remove_possibility(self) -> Result<Self::Without, V>;
}Required Associated Types§
Required Methods§
fn remove_possibility(self) -> Result<Self::Without, V>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".