Skip to main content

XmlDomDocument

Struct XmlDomDocument 

Source
pub struct XmlDomDocument<'input> { /* private fields */ }
Expand description

Parsed backend-neutral XML document.

The selected parser is used only while constructing this arena. C14N, XPath, XMLDSig, XMLEnc, and mutation code never branch on the parser.

Implementations§

Source§

impl<'input> Document<'input>

Source

pub fn parse(input: &'input str) -> Result<Self, ParseError>

Parses XML with default backend-neutral options.

Source

pub fn parse_with_options( input: &'input str, options: ParsingOptions, ) -> Result<Self, ParseError>

Parses XML with the build’s default backend.

Source

pub fn parse_with_backend( input: &'input str, backend: XmlBackend, ) -> Result<Self, ParseError>

Parses XML with an explicitly selected compiled backend.

Source

pub fn parse_with_options_and_backend( input: &'input str, options: ParsingOptions, backend: XmlBackend, ) -> Result<Self, ParseError>

Parses XML with explicit parser options and backend selection.

Source

pub fn input_text(&self) -> &'input str

Returns the original UTF-8 source.

Source

pub fn root(&self) -> Node<'_, 'input>

Returns the synthetic document root.

Source

pub fn root_element(&self) -> Node<'_, 'input>

Returns the document element.

Source

pub fn descendants(&self) -> Descendants<'_, 'input>

Iterates the document root and all descendants in document order.

Source

pub fn get_node(&self, id: NodeId) -> Option<Node<'_, 'input>>

Resolves an arena node ID in this document.

Trait Implementations§

Source§

impl<'input> Debug for Document<'input>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'input> Freeze for Document<'input>

§

impl<'input> RefUnwindSafe for Document<'input>

§

impl<'input> Send for Document<'input>

§

impl<'input> Sync for Document<'input>

§

impl<'input> Unpin for Document<'input>

§

impl<'input> UnsafeUnpin for Document<'input>

§

impl<'input> UnwindSafe for Document<'input>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<'a, T, E> AsTaggedExplicit<'a, E> for T
where T: 'a,

Source§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self, E>

Source§

impl<'a, T, E> AsTaggedImplicit<'a, E> for T
where T: 'a,

Source§

fn implicit( self, class: Class, constructed: bool, tag: u32, ) -> TaggedParser<'a, Implicit, Self, E>

Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.