Enum arg_combinators::util::EitherOrBoth[][src]

pub enum EitherOrBoth<L, R> {
    Either(Either<L, R>),
    Both(L, R),
}

Variants

Trait Implementations

impl<L: Debug, R: Debug> Debug for EitherOrBoth<L, R>
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<L, R> Send for EitherOrBoth<L, R> where
    L: Send,
    R: Send

impl<L, R> Sync for EitherOrBoth<L, R> where
    L: Sync,
    R: Sync