pub trait DecodeXml: Send {
// Required method
fn decode_xml(xml: &str) -> Result<Self>
where Self: Sized;
}Expand description
A helper trait for parsing a uPNP event stream into a more ergonomic Rust type
pub trait DecodeXml: Send {
// Required method
fn decode_xml(xml: &str) -> Result<Self>
where Self: Sized;
}A helper trait for parsing a uPNP event stream into a more ergonomic Rust type