pub struct JsonQuery(/* private fields */);
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§
Source§impl IntoIterator for JsonQuery
impl IntoIterator for JsonQuery
impl Eq for JsonQuery
impl StructuralPartialEq for JsonQuery
Auto Trait Implementations§
impl Freeze for JsonQuery
impl RefUnwindSafe for JsonQuery
impl Send for JsonQuery
impl Sync for JsonQuery
impl Unpin for JsonQuery
impl UnwindSafe for JsonQuery
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more