Skip to main content

Not

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.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl Not for False

Source§

impl Not for True

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>>

Source§

impl<A> Not for Not<A>