Enum domafic::AttributeValue [] [src]

pub enum AttributeValue {
    Str(&'static str),
    OwnedStr(String),
    Bool(bool),
}

A value of a DomNode attribute.

Variants

A value represented by a static string reference

A value represented by an owned String

A boolean value

Methods

impl AttributeValue
[src]

[src]

Extracts a string slice representing the contents. If the value is a Bool, this method returns "true" or "false".

Trait Implementations

impl Debug for AttributeValue
[src]

[src]

Formats the value using the given formatter.

impl Clone for AttributeValue
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Hash for AttributeValue
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Eq for AttributeValue
[src]

impl PartialEq for AttributeValue
[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 Display for AttributeValue
[src]

[src]

Formats the value using the given formatter. Read more