pub struct NamespaceStack(pub Vec<Namespace>);
Expand description
Namespace stack is a sequence of namespaces.
Namespace stack is used to represent cumulative namespace consisting of combined namespaces from nested elements.
Tuple Fields§
§0: Vec<Namespace>
Implementations§
Source§impl NamespaceStack
impl NamespaceStack
Sourcepub fn default() -> Self
pub fn default() -> Self
Returns a namespace stack with default items in it.
Default items are the following:
xml
→http://www.w3.org/XML/1998/namespace
;xmlns
→http://www.w3.org/2000/xmlns/
.
Sourcepub fn push_empty(&mut self) -> &mut Self
pub fn push_empty(&mut self) -> &mut Self
Adds an empty namespace to the top of this stack.
Sourcepub fn pop(&mut self) -> Namespace
pub fn pop(&mut self) -> Namespace
Removes the topmost namespace in this stack.
Panics if the stack is empty.
Sourcepub fn try_pop(&mut self) -> Option<Namespace>
pub fn try_pop(&mut self) -> Option<Namespace>
Removes the topmost namespace in this stack.
Returns Some(namespace)
if this stack is not empty and None
otherwise.
Sourcepub fn peek_mut(&mut self) -> &mut Namespace
pub fn peek_mut(&mut self) -> &mut Namespace
Borrows the topmost namespace mutably, leaving the stack intact.
Panics if the stack is empty.
Sourcepub fn peek(&self) -> &Namespace
pub fn peek(&self) -> &Namespace
Borrows the topmost namespace immutably, leaving the stack intact.
Panics if the stack is empty.
Sourcepub fn put_checked<P, U>(&mut self, prefix: P, uri: U) -> bool
pub fn put_checked<P, U>(&mut self, prefix: P, uri: U) -> bool
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.
Sourcepub fn put<P, U>(&mut self, prefix: P, uri: U) -> bool
pub fn put<P, U>(&mut self, prefix: P, uri: U) -> bool
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.
Sourcepub fn get<'a, P: ?Sized + AsRef<str>>(&'a self, prefix: &P) -> Option<&'a str>
pub fn get<'a, P: ?Sized + AsRef<str>>(&'a self, prefix: &P) -> Option<&'a str>
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.
Sourcepub fn squash(&self) -> Namespace
pub fn squash(&self) -> Namespace
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.
Sourcepub fn checked_target(&mut self) -> CheckedTarget<'_>
pub fn checked_target(&mut self) -> CheckedTarget<'_>
Returns an object which implements Extend
using put_checked()
instead of put()
.
See CheckedTarget
for more information.
Sourcepub fn iter(&self) -> NamespaceStackMappings<'_> ⓘ
pub fn iter(&self) -> NamespaceStackMappings<'_> ⓘ
Returns an iterator over all mappings in this namespace stack.
Trait Implementations§
Source§impl Clone for NamespaceStack
impl Clone for NamespaceStack
Source§fn clone(&self) -> NamespaceStack
fn clone(&self) -> NamespaceStack
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for NamespaceStack
impl Debug for NamespaceStack
Source§impl<'a> Extend<(&'a str, &'a str)> for NamespaceStack
impl<'a> Extend<(&'a str, &'a str)> for NamespaceStack
Source§fn extend<T>(&mut self, iterable: T)where
T: IntoIterator<Item = UriMapping<'a>>,
fn extend<T>(&mut self, iterable: T)where
T: IntoIterator<Item = UriMapping<'a>>,
Source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one
)Source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one
)Source§impl<'a> IntoIterator for &'a NamespaceStack
impl<'a> IntoIterator for &'a NamespaceStack
Source§impl PartialEq for NamespaceStack
impl PartialEq for NamespaceStack
impl Eq for NamespaceStack
impl StructuralPartialEq for NamespaceStack
Auto Trait Implementations§
impl Freeze for NamespaceStack
impl RefUnwindSafe for NamespaceStack
impl Send for NamespaceStack
impl Sync for NamespaceStack
impl Unpin for NamespaceStack
impl UnwindSafe for NamespaceStack
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)