pub trait LayoutProperty {
type UnevaluatedType;
type PossiblyEvaluatedType;
type Type;
const IS_DATA_DRIVEN: bool = false;
const IS_OVERRIDABLE: bool = false;
// Required methods
fn name() -> &'static str;
fn default_value() -> Self::Type;
}Provided Associated Constants§
const IS_DATA_DRIVEN: bool = false
const IS_OVERRIDABLE: bool = false
Required Associated Types§
Sourcetype UnevaluatedType
type UnevaluatedType
maplibre/maplibre-native#4add9ea original name: TransitionableType
Sourcetype PossiblyEvaluatedType
type PossiblyEvaluatedType
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.