Lots of clippy appeasement

This commit is contained in:
Lennart
2025-10-27 20:12:21 +01:00
parent 0d071d3b92
commit 86cf490fa9
84 changed files with 413 additions and 435 deletions

View File

@@ -9,7 +9,8 @@ use crate::{XmlDeserialize, XmlError};
pub struct Unparsed(BytesStart<'static>);
impl Unparsed {
#[must_use] pub fn tag_name(&self) -> String {
#[must_use]
pub fn tag_name(&self) -> String {
// TODO: respect namespace?
String::from_utf8_lossy(self.0.local_name().as_ref()).to_string()
}