Skip to main content

FromXmlOwned

Trait FromXmlOwned 

Source
pub trait FromXmlOwned: for<'xml> FromXml<'xml> { }
Expand description

Marker trait for types that can be deserialized with any lifetime

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.

Implementors§

Source§

impl<T> FromXmlOwned for T
where T: for<'xml> FromXml<'xml>,