Struct xml::namespace::NamespaceStack [] [src]

pub struct NamespaceStack(pub Vec<Namespace>);

Namespace stack is a sequence of namespaces.

Namespace stack is used to represent cumulative namespace consisting of combined namespaces from nested elements.

Methods

impl NamespaceStack
[src]

Returns an empty namespace stack.

Returns a namespace stack with default items in it.

Default items are the following:

  • xmlhttp://www.w3.org/XML/1998/namespace;
  • xmlnshttp://www.w3.org/2000/xmlns/.

Adds an empty namespace to the top of this stack.

Removes the topmost namespace in this stack.

Panics if the stack is empty.

Removes the topmost namespace in this stack.

Returns Some(namespace) if this stack is not empty and None otherwise.

Borrows the topmost namespace mutably, leaving the stack intact.

Panics if the stack is empty.

Borrows the topmost namespace immutably, leaving the stack intact.

Panics if the stack is empty.

Puts a mapping into the topmost namespace if this stack does not already contain one.

Returns a boolean flag indicating whether the insertion has completed successfully. Note that both key and value are matched and the mapping is inserted if either namespace prefix is not already mapped, or if it is mapped, but to a different URI.

Parameters

  • prefix --- namespace prefix;
  • uri --- namespace URI.

Return value

true if prefix has been inserted successfully; false if the prefix was already present in the namespace stack.

Puts a mapping into the topmost namespace in this stack.

This method does not override a mapping in the topmost namespace if it is already present, however, it does not depend on other namespaces in the stack, so it is possible to put a mapping which is present in lower namespaces.

Returns a boolean flag indicating whether the insertion has completed successfully.

Parameters

  • prefix --- namespace prefix;
  • uri --- namespace URI.

Return value

true if prefix has been inserted successfully; false if the prefix was already present in the namespace.

Performs a search for the given prefix in the whole stack.

This method walks the stack from top to bottom, querying each namespace in order for the given prefix. If none of the namespaces contains the prefix, None is returned.

Parameters

  • prefix --- namespace prefix.

Combines this stack of namespaces into a single namespace.

Namespaces are combined in left-to-right order, that is, rightmost namespace elements take priority over leftmost ones.

Returns an object which implements Extend using put_checked() instead of put().

See CheckedTarget for more information.

Returns an iterator over all mappings in this namespace stack.

Trait Implementations

impl Clone for NamespaceStack
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for NamespaceStack
[src]

impl PartialEq for NamespaceStack
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Debug for NamespaceStack
[src]

Formats the value using the given formatter.

impl<'a> IntoIterator for &'a NamespaceStack
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more

impl<'a> Extend<UriMapping<'a>> for NamespaceStack
[src]

Extends a collection with the contents of an iterator. Read more