pub trait HasIsDominant {
    // Required method
    fn is_dominant(&self) -> bool;
}
Expand description

A trait for types that have a static name.

Required Methods§

source

fn is_dominant(&self) -> bool

Returns whether the type (usually the modifier enum) is dominant.

Implementors§