Struct minidom::attribute::Attribute
[−]
[src]
pub struct Attribute {
pub name: String,
pub value: String,
}An attribute of a DOM element.
This is of the form: name="value"
This does not support prefixed/namespaced attributes yet.
Fields
name: String
The name of the attribute.
value: String
The value of the attribute.
Methods
impl Attribute[src]
fn new<N: Into<String>, V: Into<String>>(name: N, value: V) -> Attribute
Construct a new attribute from the given name and value.
Examples
use minidom::Attribute; let attr = Attribute::new("name", "value"); assert_eq!(attr.name, "name"); assert_eq!(attr.value, "value");
Trait Implementations
impl Clone for Attribute[src]
fn clone(&self) -> Attribute
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Debug for Attribute[src]
impl PartialEq for Attribute[src]
fn eq(&self, __arg_0: &Attribute) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Attribute) -> bool
This method tests for !=.
impl Eq for Attribute[src]
impl Ord for Attribute[src]
fn cmp(&self, __arg_0: &Attribute) -> Ordering
This method returns an Ordering between self and other. Read more
impl PartialOrd for Attribute[src]
fn partial_cmp(&self, __arg_0: &Attribute) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, __arg_0: &Attribute) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, __arg_0: &Attribute) -> bool
This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, __arg_0: &Attribute) -> bool
This method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, __arg_0: &Attribute) -> bool
This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more