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

The name of the attribute.

The value of the attribute.

Methods

impl Attribute
[src]

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]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Attribute
[src]

Formats the value using the given formatter.

impl PartialEq for Attribute
[src]

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

This method tests for !=.

impl Eq for Attribute
[src]

impl Ord for Attribute
[src]

This method returns an Ordering between self and other. Read more

impl PartialOrd for Attribute
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Display for Attribute
[src]

Formats the value using the given formatter. Read more