From d69eb892c166b19e4b1388b5c269ab7780d6211d Mon Sep 17 00:00:00 2001 From: Ash Beitz <8304894+ashbeitz@users.noreply.github.com> Date: Fri, 1 Mar 2024 21:33:58 -0800 Subject: [PATCH] Improved seat massager sample --- digital-twin-model/src/sdv_v2.rs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/digital-twin-model/src/sdv_v2.rs b/digital-twin-model/src/sdv_v2.rs index d63e23c3..f33cd2a7 100644 --- a/digital-twin-model/src/sdv_v2.rs +++ b/digital-twin-model/src/sdv_v2.rs @@ -280,7 +280,9 @@ pub mod seat_massager { #[derivative(Default(value = "crate::sdv_v2::context()"))] pub context: Vec, #[serde(rename = "@type")] - #[derivative(Default(value = "crate::sdv_v2::seat_massager::sequence_names::ID.to_string()"))] + #[derivative(Default( + value = "crate::sdv_v2::seat_massager::sequence_names::ID.to_string()" + ))] pub model_id: String, pub sequence_names: Vec, } @@ -490,7 +492,9 @@ pub mod vehicle { #[derivative(Default(value = "crate::sdv_v2::context()"))] pub context: Vec, #[serde(rename = "@type")] - #[derivative(Default(value = "crate::sdv_v2::vehicle::vehicle_identification::ID.to_string()"))] + #[derivative(Default( + value = "crate::sdv_v2::vehicle::vehicle_identification::ID.to_string()" + ))] pub model_id: String, pub vin: crate::sdv_v2::vehicle::vehicle_identification::vin::TYPE, }