Trait earth::schema::FromSchemaReader [] [src]

pub trait FromSchemaReader: Default + Sized {
    fn build_from<B: BufRead>(element: XmlElement<B>) -> DecodeResult<Self> { ... }
    fn read_from<B: BufRead>(
        &mut self,
        element: XmlElement<B>
    ) -> DecodeResult<()> { ... } fn match_child<B: BufRead>(
        &mut self,
        _name: &XmlName,
        _child: XmlElement<B>
    ) -> DecodeResult<()> { ... } }

Provided Methods

Implementors