pub trait DeserializeSync<'de, R>: Sizedwhere
R: XmlReaderSync<'de>,{
type Error;
// Required method
fn deserialize(reader: &mut R) -> Result<Self, Self::Error>;
}
Expand description
Trait that could be implemented by types to support deserialization from XML
using the quick_xml
crate.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.