Enum selectors::attr::AttrSelectorOperator[][src]

pub enum AttrSelectorOperator {
    Equal,
    Includes,
    DashMatch,
    Prefix,
    Substring,
    Suffix,
}

Variants

Methods

impl AttrSelectorOperator
[src]

Trait Implementations

impl Clone for AttrSelectorOperator
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for AttrSelectorOperator
[src]

impl Eq for AttrSelectorOperator
[src]

impl PartialEq for AttrSelectorOperator
[src]

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

This method tests for !=.

impl ToCss for AttrSelectorOperator
[src]

Serialize self in CSS syntax, writing to dest.

Serialize self in CSS syntax and return a string. Read more

Auto Trait Implementations