pub trait BoolMask {
// Required methods
fn from_bool(value: bool) -> Self;
fn is_true(&self) -> bool;
fn is_false(&self) -> bool;
}
Expand description
Basic methods for boolean masks.
Required Methods§
Object Safety§
This trait is not object safe.