Enum squark::AttributeValue[][src]

pub enum AttributeValue {
    String(String),
    Bool(bool),
}

Variants

Trait Implementations

impl Clone for AttributeValue
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AttributeValue
[src]

Formats the value using the given formatter. Read more

impl PartialEq for AttributeValue
[src]

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

This method tests for !=.

impl From<String> for AttributeValue
[src]

Performs the conversion.

impl<'a> From<&'a str> for AttributeValue
[src]

Performs the conversion.

impl From<bool> for AttributeValue
[src]

Performs the conversion.

Auto Trait Implementations