pub trait Bool {
    const VALUE: bool;
}
Expand description

A type level boolean value.

Required Associated Constants§

source

const VALUE: bool

The runtime boolean value.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl Bool for False

source§

const VALUE: bool = false

source§

impl Bool for True

source§

const VALUE: bool = true