Enum rs_es::operations::search::aggregations::bucket::OrderKey [] [src]

pub enum OrderKey<'a> {
    Count,
    Key,
    Term,
    Expr(&'a str),
}

Order - used for some bucketing aggregations to determine the order of buckets

Variants

Trait Implementations

impl<'a> Debug for OrderKey<'a>
[src]

Formats the value using the given formatter.

impl<'a> Eq for OrderKey<'a>
[src]

impl<'a> Hash for OrderKey<'a>
[src]

Feeds this value into the state given, updating the hasher as necessary.

Feeds a slice of this type into the state provided.

impl<'a> PartialEq for OrderKey<'a>
[src]

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

This method tests for !=.

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

Performs the conversion.

impl<'a> AsRef<str> for OrderKey<'a>
[src]

Performs the conversion.