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
impl StructuralPartialEq for JsonQuery
Auto Trait Implementations
impl RefUnwindSafe for JsonQuery
impl Send for JsonQuery
impl Sync for JsonQuery
impl Unpin for JsonQuery
impl UnwindSafe for JsonQuery
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more