pub type FeatureEnabled = Option<FeatureCategories>;
Expand description

Whether a feature is enabled and its categories if so.

Aliased Type§

enum FeatureEnabled {
    None,
    Some(HashSet<&'static str>),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(HashSet<&'static str>)

Some value of type T.