wip: Interfaces using NamedList helper type to handle dynamic interface names, some refactoring on top

This commit is contained in:
Jean-Gabriel Gill-Couture
2024-11-18 07:08:03 -05:00
parent 65c395aeae
commit cb1fea1eda
6 changed files with 2746 additions and 135 deletions

View File

@@ -79,6 +79,8 @@ impl YaDeserializeTrait for RawXml {
}
println!("buffered events {buffer}");
let next = reader.peek()?;
println!("next : {:?}", &next);
Ok(RawXml(buffer))
}

View File

@@ -1,6 +1,6 @@
mod generic_xml;
mod maybe_string;
//mod generic_xml;
//mod maybe_string;
mod yaserde;
pub use generic_xml::*;
pub use maybe_string::*;
//pub use generic_xml::*;
//pub use maybe_string::*;
pub use yaserde::*;