This commit is contained in:
Andras Schmelczer 2026-02-14 12:53:29 +00:00
parent 3a3f899ea2
commit 128b3191e7
68 changed files with 28060 additions and 1152 deletions

View file

@ -35,6 +35,8 @@ pub enum FeatureInfo {
suffix: &'static str,
#[serde(skip_serializing_if = "is_false")]
raw: bool,
#[serde(skip_serializing_if = "is_false")]
absolute: bool,
},
#[serde(rename = "enum")]
Enum {
@ -99,6 +101,7 @@ pub fn build_features_response(data: &PropertyData) -> FeaturesResponse {
prefix: feature_config.prefix,
suffix: feature_config.suffix,
raw: feature_config.raw,
absolute: feature_config.absolute,
});
}
}