Trait WithoutVariant

Source
pub trait WithoutVariant<V> {
    type Without;

    // Required method
    fn remove_possibility(self) -> Result<Self::Without, V>;
}

Required Associated Types§

Required Methods§

Implementations on Foreign Types§

Source§

impl<T, E, V> WithoutVariant<V> for Result<T, E>
where E: WithoutVariant<V>,

Implementors§