pub struct TreeBuilder {
pub root: Option<Element>,
/* private fields */
}
Expand description
Tree-building parser state
Fields§
§root: Option<Element>
Document root element if finished
Implementations§
Source§impl TreeBuilder
impl TreeBuilder
Sourcepub fn with_prefixes_stack(self, prefixes_stack: Vec<Prefixes>) -> Self
pub fn with_prefixes_stack(self, prefixes_stack: Vec<Prefixes>) -> Self
Allow setting prefixes stack.
Useful to provide knowledge of namespaces that would have been declared on parent elements not present in the reader.
Sourcepub fn top(&mut self) -> Option<&Element>
pub fn top(&mut self) -> Option<&Element>
Get the top-most element from the stack but don’t remove it
Sourcepub fn unshift_child(&mut self) -> Option<Element>
pub fn unshift_child(&mut self) -> Option<Element>
Unshift the first child of the top element
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TreeBuilder
impl RefUnwindSafe for TreeBuilder
impl Send for TreeBuilder
impl Sync for TreeBuilder
impl Unpin for TreeBuilder
impl UnwindSafe for TreeBuilder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more