pub type Not<T> = <T as Not>::Output;
Available on crate feature type_level_bool only.
Expand description

Negates a Boolean.

assert_eq!(Not::<True >::VALUE, false);
assert_eq!(Not::<False>::VALUE, true);