Struct elasticsearch_dsl::search::queries::custom::JsonQuery [−][src]
pub struct JsonQuery(_);
Expand description
Raw JSON query for something not yet supported.
To create JSON query:
Query::json(serde_json::json!({ "term": { "user": "username" } }));
NOTE: This is fallible and can lead to incorrect queries and rejected search requests, use ar your own risk.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for JsonQuery
impl UnwindSafe for JsonQuery
Blanket Implementations
Mutably borrows from an owned value. Read more