[][src]Struct sxd_xpath_visitor::nodeset::Namespace

pub struct Namespace<'d> {
    pub parent: Element<'d>,
    pub prefix: &'d str,
    pub uri: &'d str,
}

Represents a namespace.

This differs from the DOM, which does not treat namespaces as a separate item.

Fields

parent: Element<'d>prefix: &'d struri: &'d str

Implementations

impl<'d> Namespace<'d>[src]

pub fn document(&self) -> Document<'d>[src]

pub fn parent(&self) -> Element<'d>[src]

pub fn prefix(&self) -> &'d str[src]

pub fn uri(&self) -> &'d str[src]

pub fn expanded_name(&self) -> QName<'d>[src]

Trait Implementations

impl<'d> Clone for Namespace<'d>[src]

impl<'d> Copy for Namespace<'d>[src]

impl<'d> Debug for Namespace<'d>[src]

impl<'d> Eq for Namespace<'d>[src]

impl<'d> Hash for Namespace<'d>[src]

impl<'d> PartialEq<Namespace<'d>> for Namespace<'d>[src]

impl<'d> StructuralEq for Namespace<'d>[src]

impl<'d> StructuralPartialEq for Namespace<'d>[src]

Auto Trait Implementations

impl<'d> !RefUnwindSafe for Namespace<'d>[src]

impl<'d> !Send for Namespace<'d>[src]

impl<'d> !Sync for Namespace<'d>[src]

impl<'d> Unpin for Namespace<'d>[src]

impl<'d> !UnwindSafe for Namespace<'d>[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Downcast for T where
    T: Any
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.