[][src]Trait typebool::ops::Xor

pub trait Xor<A> {
    type Output;
}

The exclusive disjunction of two Bools.

Associated Types

type Output

The result of this operation.

Loading content...

Implementors

impl Xor<False> for False[src]

type Output = False

impl Xor<False> for True[src]

type Output = True

impl Xor<True> for False[src]

type Output = True

impl Xor<True> for True[src]

type Output = False

Loading content...