Struct svgparser::svg::QName [] [src]

pub struct QName<'a, T> {
    pub prefix: &'a str,
    pub local: Name<'a, T>,
}

Qualified name.

Fields

Namespace prefix.

Local name.

Methods

impl<'a, T> QName<'a, T>
[src]

[src]

Creates a new QName.

Trait Implementations

impl<'a, T: PartialEq> PartialEq for QName<'a, T>
[src]

[src]

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

[src]

This method tests for !=.

impl<'a, T: Debug> Debug for QName<'a, T>
[src]

[src]

Formats the value using the given formatter. Read more

impl<'a, T: Clone> Clone for QName<'a, T>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a, T: Copy> Copy for QName<'a, T>
[src]

Auto Trait Implementations

impl<'a, T> Send for QName<'a, T> where
    T: Send

impl<'a, T> Sync for QName<'a, T> where
    T: Sync