[][src]Trait powerset_enum_traits::WithoutVariant

pub trait WithoutVariant<V> {
type Without;
    fn remove_possibility(self) -> Result<Self::Without, V>;
}

Associated Types

type Without

Loading content...

Required methods

fn remove_possibility(self) -> Result<Self::Without, V>

Loading content...

Implementations on Foreign Types

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

type Without = Result<T, <E as WithoutVariant<V>>::Without>

Loading content...

Implementors

Loading content...