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

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

Represents a type that can parsing from XML.

Required Methods§

Provided Methods§

source

fn parse_from_xml_string(s: &str) -> ParseResult<Self>

Parse from XML string.

Implementations on Foreign Types§

source§

impl<T: ParseFromXML> ParseFromXML for Box<T>

source§

impl<T: ParseFromXML> ParseFromXML for Arc<T>

source§

impl ParseFromXML for i64

source§

impl ParseFromXML for Value

source§

impl ParseFromXML for i32

source§

impl ParseFromXML for i16

source§

impl ParseFromXML for i8

Implementors§