Trait NamespacedPropertyAttribute

Source
pub trait NamespacedPropertyAttribute {
    // Required methods
    fn namespace(&self) -> &str;
    fn property(&self) -> &str;
    fn attribute(&self) -> &str;
}
Expand description

A trait describing a namespaced attribute.

Required Methods§

Source

fn namespace(&self) -> &str

The namespace label of the attribute

Source

fn property(&self) -> &str

The property label of the attribute

Source

fn attribute(&self) -> &str

The attribute of the namespaced property

Implementations on Foreign Types§

Source§

impl<'a> NamespacedPropertyAttribute for (&'a str, &'a str, &'a str)

Source§

fn namespace(&self) -> &str

Source§

fn property(&self) -> &str

Source§

fn attribute(&self) -> &str

Implementors§