Trait xso::FromOptionalXmlText
source · pub trait FromOptionalXmlText: Sized {
// Required method
fn from_optional_xml_text(s: Option<&str>) -> Result<Option<Self>, Error>;
}
Expand description
Provide construction of a value from optional XML text data.
Most likely, you don’t need to implement this; implement FromXmlText
instead (which automatically provides a FromOptionalXmlText
implementation).
This trait has to exist to handle the special-ness of Option<_>
when it
comes to values which don’t always exist.
Required Methods§
Object Safety§
This trait is not object safe.