Enum dictcc::QueryType [] [src]

pub enum QueryType {
    Exact,
    Regex,
    Word,
}

Different types of queries. Used by DictQuery.

Variants

Search for exact matches

Every entry that contains the query-word is a hit

Search for regex, so the user can specify by himself what he wants to match

Trait Implementations

impl Clone for QueryType
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for QueryType
[src]

impl Eq for QueryType
[src]

impl PartialEq for QueryType
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl Debug for QueryType
[src]

[src]

Formats the value using the given formatter.

impl FromStr for QueryType
[src]

The associated error which can be returned from parsing.

[src]

Parses a string s to return a value of this type. Read more