Trait xso::FromXmlText
source · pub trait FromXmlText: Sized {
// Required method
fn from_xml_text(s: &str) -> Result<Self, Error>;
}
Expand description
Convert XML text to a value.
Required Methods§
sourcefn from_xml_text(s: &str) -> Result<Self, Error>
fn from_xml_text(s: &str) -> Result<Self, Error>
Construct a value from XML text.
This is similar to std::str::FromStr
, but the error type is fixed.
Object Safety§
This trait is not object safe.