Enum ternary::Unknown [] [src]

pub enum Unknown {}

Our Unknown type value

Trait Implementations

impl ToTernary for Unknown
[src]

impl Not for Unknown
[src]

Unknown == Unknown

The resulting type after applying the ! operator

The method for the unary ! operator

impl BitAnd<True> for Unknown
[src]

Unknown & True == Unknown

The resulting type after applying the & operator

The method for the & operator

impl BitAnd<Unknown> for Unknown
[src]

Unknown & Unknown == Unknown

The resulting type after applying the & operator

The method for the & operator

impl BitAnd<False> for Unknown
[src]

Unknown & False == False

The resulting type after applying the & operator

The method for the & operator

impl BitOr<True> for Unknown
[src]

Unknown | True == True

The resulting type after applying the | operator

The method for the | operator

impl BitOr<Unknown> for Unknown
[src]

Unknown | Unknown == Unknown

The resulting type after applying the | operator

The method for the | operator

impl BitOr<False> for Unknown
[src]

Unknown | False == Unknown

The resulting type after applying the | operator

The method for the | operator