Struct roxmltree::ExpandedName[][src]

pub struct ExpandedName<'a, 'b> { /* fields omitted */ }

An expanded name.

Contains an namespace URI and name pair.

Implementations

impl<'a, 'b> ExpandedName<'a, 'b>[src]

pub fn namespace(&self) -> Option<&'a str>[src]

Returns a namespace URI.

Examples

let doc = roxmltree::Document::parse("<e xmlns='http://www.w3.org'/>").unwrap();

assert_eq!(doc.root_element().tag_name().namespace(), Some("http://www.w3.org"));

pub fn name(&self) -> &'b str[src]

Returns a local name.

Examples

let doc = roxmltree::Document::parse("<e/>").unwrap();

assert_eq!(doc.root_element().tag_name().name(), "e");

Trait Implementations

impl<'a, 'b> Clone for ExpandedName<'a, 'b>[src]

impl<'a, 'b> Copy for ExpandedName<'a, 'b>[src]

impl Debug for ExpandedName<'_, '_>[src]

impl<'a, 'b> From<&'b str> for ExpandedName<'a, 'b>[src]

impl<'a, 'b> From<(&'a str, &'b str)> for ExpandedName<'a, 'b>[src]

impl<'a, 'b> PartialEq<ExpandedName<'a, 'b>> for ExpandedName<'a, 'b>[src]

impl<'a, 'b> StructuralPartialEq for ExpandedName<'a, 'b>[src]

Auto Trait Implementations

impl<'a, 'b> RefUnwindSafe for ExpandedName<'a, 'b>

impl<'a, 'b> Send for ExpandedName<'a, 'b>

impl<'a, 'b> Sync for ExpandedName<'a, 'b>

impl<'a, 'b> Unpin for ExpandedName<'a, 'b>

impl<'a, 'b> UnwindSafe for ExpandedName<'a, 'b>

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> 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.