pub trait DataDrivenLayoutProperty {
type UnevaluatedType: Default;
type PossiblyEvaluatedTyp: Default;
type Type;
const IS_DATA_DRIVEN: bool = true;
const IS_OVERRIDABLE: bool = false;
// Required methods
fn name() -> &'static str;
fn default_value() -> Self::Type;
}Provided Associated Constants§
const IS_DATA_DRIVEN: bool = true
const IS_OVERRIDABLE: bool = false
Required Associated Types§
Sourcetype UnevaluatedType: Default
type UnevaluatedType: Default
maplibre/maplibre-native#4add9ea original name: TransitionableType
Sourcetype PossiblyEvaluatedTyp: Default
type PossiblyEvaluatedTyp: Default
maplibre/maplibre-native#4add9ea original name: EvaluatorType
type Type
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.