xml: tiny refactoring

This commit is contained in:
Lennart K
2025-08-28 15:24:19 +02:00
parent 43b4150e28
commit 85787e69bc

View File

@@ -70,13 +70,12 @@ impl NamedStruct {
.ns_prefix .ns_prefix
.iter() .iter()
.map(|(ns, prefix)| { .map(|(ns, prefix)| {
let sep = if !prefix.value().is_empty() { let attr_name = if prefix.value().is_empty() {
b":".to_vec() "xmlns".to_owned()
} else { } else {
b"".to_vec() format!("xmlns:{}", prefix.value())
}; };
let attr_name = [b"xmlns".as_ref(), &sep, prefix.value().as_bytes()].concat(); let a = syn::LitByteStr::new(attr_name.as_bytes(), prefix.span());
let a = syn::LitByteStr::new(&attr_name, prefix.span());
quote! { quote! {
bytes_start.push_attribute((#a.as_ref(), #ns.as_ref())); bytes_start.push_attribute((#a.as_ref(), #ns.as_ref()));
} }