Enum ternary::False [] [src]

pub enum False {}

Our False type value

Trait Implementations

impl ToTernary for False
[src]

impl Not for False
[src]

False == True

type Output = True

The resulting type after applying the ! operator

fn not(self) -> Self::Output

The method for the unary ! operator

impl<X: ToTernary> BitAnd<X> for False
[src]

False & X == False

type Output = False

The resulting type after applying the & operator

fn bitand(self, _: X) -> Self::Output

The method for the & operator

impl<X: ToTernary> BitOr<X> for False
[src]

False | X == X

type Output = X

The resulting type after applying the | operator

fn bitor(self, _: X) -> Self::Output

The method for the | operator