Enum async_mpd::FilterExpr[][src]

pub enum FilterExpr {
    Equals(Tag, String),
    Contains(Tag, String),
    Not(Box<FilterExpr>),
}
Expand description

Filter expression used by search function

Variants

Equals

Tuple Fields of Equals

0: Tag1: String
Contains

Tuple Fields of Contains

0: Tag1: String
Not

Tuple Fields of Not

0: Box<FilterExpr>

Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.