/// Helper function to emit deprecation warnings for nvext parameters
pubfnemit_nvext_deprecation_warning(
field_name:&str,
nvext_has_value:bool,
common_has_value:bool,
){
ifnvext_has_value&&!common_has_value{
tracing::warn!(
"DEPRECATION WARNING: 'nvext.{field_name}' is deprecated and will be removed in a future release. Use '{field_name}' at the top level or in 'extra_body' instead."
);
}elseifnvext_has_value&&common_has_value{
tracing::warn!(
"DEPRECATION WARNING: 'nvext.{field_name}' is deprecated and will be removed in a future release. Top-level '{field_name}' takes precedence. Use '{field_name}' at the top level or in 'extra_body' instead."
);
}
}
/// Helper function to choose between common and nvext values with deprecation warnings