Enum rs_es::query::term::TermsQueryIn
[−]
[src]
pub enum TermsQueryIn {
Values(Vec<JsonVal>),
Lookup(TermsQueryLookup),
}TermsQueryIn
Variants
Values(Vec<JsonVal>)A Vec of values
Lookup(TermsQueryLookup)An indirect reference to another document
Trait Implementations
impl Debug for TermsQueryIn[src]
impl Serialize for TermsQueryIn[src]
fn serialize<S>(&self, serializer: &mut S) -> Result<(), S::Error> where S: Serializer
Serializes this value into this serializer.
impl Default for TermsQueryIn[src]
impl From<TermsQueryLookup> for TermsQueryIn[src]
fn from(from: TermsQueryLookup) -> TermsQueryIn
Performs the conversion.
impl From<Vec<JsonVal>> for TermsQueryIn[src]
fn from(from: Vec<JsonVal>) -> TermsQueryIn
Performs the conversion.
impl<'a, A> From<&'a [A]> for TermsQueryIn where A: JsonPotential[src]
fn from(from: &'a [A]) -> TermsQueryIn
Performs the conversion.
impl<A> From<Vec<A>> for TermsQueryIn where A: JsonPotential[src]
fn from(from: Vec<A>) -> TermsQueryIn
Performs the conversion.