Enum argle::EitherError[][src]

pub enum EitherError<A, B> {
    Left(A),
    Right(B),
    MultipleMutuallyExclusiveParams {
        left_name: String,
        right_name: String,
    },
}

Variants

Fields of MultipleMutuallyExclusiveParams

Trait Implementations

impl<A: Debug, B: Debug> Debug for EitherError<A, B>
[src]

Formats the value using the given formatter. Read more

impl<A: Debug + Display, B: Debug + Display> Display for EitherError<A, B>
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<A, B> Send for EitherError<A, B> where
    A: Send,
    B: Send

impl<A, B> Sync for EitherError<A, B> where
    A: Sync,
    B: Sync