pub trait Bit {
    type Neg: Bit;

    fn val() -> bool;
    fn new() -> Self;
}
Expand description

Type-level enum of True and False.

Required Associated Types

Result of negation of bit

Required Methods

Real, represented with rust’s objects value of type.

Real value of type.

Implementors