Enum rs_es::query::term::TermsQueryIn [] [src]

pub enum TermsQueryIn {
    Values(Vec<JsonVal>),
    Lookup(TermsQueryLookup),
}

TermsQueryIn

Variants

A Vec of values

An indirect reference to another document

Trait Implementations

impl Debug for TermsQueryIn
[src]

Formats the value using the given formatter.

impl Serialize for TermsQueryIn
[src]

Serializes this value into this serializer.

impl Default for TermsQueryIn
[src]

Returns the "default value" for a type. Read more

impl From<TermsQueryLookup> for TermsQueryIn
[src]

Performs the conversion.

impl From<Vec<JsonVal>> for TermsQueryIn
[src]

Performs the conversion.

impl<'a, A> From<&'a [A]> for TermsQueryIn where A: JsonPotential
[src]

Performs the conversion.

impl<A> From<Vec<A>> for TermsQueryIn where A: JsonPotential
[src]

Performs the conversion.