pub struct DbQuery {
pub query: NewQuery,
pub rev_order: bool,
pub ordering: Option<Vec<Index>>,
}
Expand description
A full query made against a database and zero or more remote nodes.
Fields§
§query: NewQuery
The fog-pack query being run against the entries attached to a document.
rev_order: bool
Set to reverse the result ordering. Normally starts with the lowest-numbered.
ordering: Option<Vec<Index>>
Location of the field to order results by
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DbQuery
impl RefUnwindSafe for DbQuery
impl Send for DbQuery
impl Sync for DbQuery
impl Unpin for DbQuery
impl UnwindSafe for DbQuery
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