Skip to main content

XmlFromStr

Trait XmlFromStr 

Source
pub trait XmlFromStr { }
Expand description

Marker trait for auto-implementing the FromXml trait based on the FromStr-implementation of a type.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl XmlFromStr for &str

Source§

impl XmlFromStr for bool

Source§

impl XmlFromStr for char

Source§

impl XmlFromStr for i8

Source§

impl XmlFromStr for i16

Source§

impl XmlFromStr for i32

Source§

impl XmlFromStr for i64

Source§

impl XmlFromStr for u8

Source§

impl XmlFromStr for u16

Source§

impl XmlFromStr for u32

Source§

impl XmlFromStr for u64

Source§

impl XmlFromStr for u128

Source§

impl XmlFromStr for String

Source§

impl<T: XmlFromStr> XmlFromStr for &'static T

Implementors§

Source§

impl<T> XmlFromStr for XmlVec<T>
where T: FromStr,