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§
Required Methods§
sourcefn feed(&mut self, ev: Event) -> Result<Option<Self::Output>, Error>
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.