Trait xso::FromEventsBuilder

source ·
pub trait FromEventsBuilder {
    type Output;

    // Required method
    fn feed(&mut self, ev: Event) -> Result<Option<Self::Output>, Error>;
}
Expand description

Trait for a temporary object allowing to construct a struct from `rxml::Event items.

Required Associated Types§

source

type Output

The type which will be constructed by this builder.

Required Methods§

source

fn feed(&mut self, ev: Event) -> Result<Option<Self::Output>, Error>

Feed another rxml::Event into the element construction process.

If the event contains unexpected or invalid data, an error is returned.

If the construction of the object is complete, it is returned as Ok(Some(.)). Once that has happened, feed may panic if called again.

Implementors§