[][src]Trait typebool::ops::Not

pub trait Not {
    type Output;
}

The negation of a Bool.

Associated Types

type Output

The result of this operation.

Loading content...

Implementors

impl Not for False[src]

type Output = True

impl Not for True[src]

type Output = False

impl<A> Not for Not<A>[src]

type Output = A

impl<A, B> Not for And<A, B>[src]

type Output = Or<Not<A>, Not<B>>

impl<A, B> Not for Or<A, B>[src]

type Output = And<Not<A>, Not<B>>

Loading content...