pub struct SelectKeysQuery(pub QueryIds);
Expand description
Query to select only property keys of given ids. All of the ids must exist in the database.
The result will be number of elements returned and the list of elements with all properties except all values will be empty.
Tuple Fields§
§0: QueryIds
Trait Implementations§
Source§impl Clone for SelectKeysQuery
impl Clone for SelectKeysQuery
Source§fn clone(&self) -> SelectKeysQuery
fn clone(&self) -> SelectKeysQuery
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SelectKeysQuery
impl Debug for SelectKeysQuery
Source§impl PartialEq for SelectKeysQuery
impl PartialEq for SelectKeysQuery
Source§impl Query for &SelectKeysQuery
impl Query for &SelectKeysQuery
fn process<Store: StorageData>( &self, db: &DbImpl<Store>, ) -> Result<QueryResult, DbError>
Source§impl Query for SelectKeysQuery
impl Query for SelectKeysQuery
fn process<Store: StorageData>( &self, db: &DbImpl<Store>, ) -> Result<QueryResult, DbError>
Source§impl Serialize for SelectKeysQuery
impl Serialize for SelectKeysQuery
impl StructuralPartialEq for SelectKeysQuery
Auto Trait Implementations§
impl Freeze for SelectKeysQuery
impl RefUnwindSafe for SelectKeysQuery
impl Send for SelectKeysQuery
impl Sync for SelectKeysQuery
impl Unpin for SelectKeysQuery
impl UnwindSafe for SelectKeysQuery
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