pub type Logical = OptionNA<bool>;
enum Logical {
    NA,
    Some(bool),
}
The resulting type after applying the & operator.
The resulting type after applying the | operator.
The resulting type after applying the ! operator.
The type returned in the event of a conversion error.
Performs the conversion.