[][src]Struct sxd_document::QName

pub struct QName<'s> { /* fields omitted */ }

A namespace-qualified name. This represents the name of an element or attribute after the prefix has been mapped to a specific namespace.

Methods

impl<'s> QName<'s>[src]

pub fn new(local_part: &'s str) -> QName<'s>[src]

Create a QName without a namespace

pub fn with_namespace_uri(
    namespace_uri: Option<&'s str>,
    local_part: &'s str
) -> QName<'s>
[src]

Create a QName with an optional namespace

pub fn namespace_uri(&self) -> Option<&'s str>[src]

pub fn local_part(&self) -> &'s str[src]

Trait Implementations

impl<'s> PartialEq<QName<'s>> for QName<'s>[src]

impl<'s> From<(&'s str, &'s str)> for QName<'s>[src]

impl<'s> From<&'s str> for QName<'s>[src]

impl<'s> Clone for QName<'s>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<'s> Copy for QName<'s>[src]

impl<'s> Debug for QName<'s>[src]

Auto Trait Implementations

impl<'s> Send for QName<'s>

impl<'s> Sync for QName<'s>

Blanket Implementations

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

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

type Owned = T

The resulting type after obtaining ownership.

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

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.

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

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

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