From a3dc4e1475a92c011cc55a070e268036abe88b01 Mon Sep 17 00:00:00 2001 From: cel 🌸 Date: Wed, 20 Nov 2024 15:10:36 +0000 Subject: WIP: write start tag of element --- src/element.rs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src/element.rs') diff --git a/src/element.rs b/src/element.rs index 6d2a6b7..d883c04 100644 --- a/src/element.rs +++ b/src/element.rs @@ -1,10 +1,14 @@ // elements resemble a final tree, including inherited namespace information -use std::collections::{HashMap, HashSet}; +use std::{ + collections::{HashMap, HashSet}, + convert::Infallible, + str::FromStr, +}; use crate::{ error::Error, - xml::{self, Attribute}, + xml::{self, parsers_complete::Parser, Attribute}, }; // when are namespaces names chosen then if they are automatically calculated -- cgit