logo
pub trait ParseFromXML: Sized + Type {
    fn parse_from_xml(value: Option<Value>) -> ParseResult<Self>;

    fn parse_from_xml_string(s: &str) -> ParseResult<Self> { ... }
}
Expand description

Represents a type that can parsing from XML.

Required Methods

Provided Methods

Parse from XML string.

Implementations on Foreign Types

Implementors