pub struct MetadataQuery {
pub collection: String,
pub filters: Vec<Filter>,
pub limit: Option<usize>,
pub sort_by: Option<SortBy>,
}Expand description
Metadata-only query
Fields§
§collection: String§filters: Vec<Filter>§limit: Option<usize>§sort_by: Option<SortBy>Trait Implementations§
Source§impl Clone for MetadataQuery
impl Clone for MetadataQuery
Source§fn clone(&self) -> MetadataQuery
fn clone(&self) -> MetadataQuery
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 MetadataQuery
impl Debug for MetadataQuery
Auto Trait Implementations§
impl Freeze for MetadataQuery
impl RefUnwindSafe for MetadataQuery
impl Send for MetadataQuery
impl Sync for MetadataQuery
impl Unpin for MetadataQuery
impl UnwindSafe for MetadataQuery
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