Trait Not

Source
pub trait Not {
    type Output;
}
Expand description

The negation of a Bool.

Required Associated Types§

Source

type Output

The result of this operation.

Implementors§

Source§

impl Not for False

Source§

impl Not for True

Source§

impl<A> Not for Not<A>

Source§

impl<A, B> Not for And<A, B>

Source§

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

Source§

impl<A, B> Not for Or<A, B>

Source§

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