pub struct ListEntryQuery {
pub bundles: Vec<Uuid>,
pub group_by: ListEntryGroupBy,
}
Expand description
Query for listing entries
Fields§
§bundles: Vec<Uuid>
The Bundle
s to filter to (empty means “all”)
group_by: ListEntryGroupBy
Trait Implementations§
Source§impl Clone for ListEntryQuery
impl Clone for ListEntryQuery
Source§fn clone(&self) -> ListEntryQuery
fn clone(&self) -> ListEntryQuery
Returns a copy 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 ListEntryQuery
impl Debug for ListEntryQuery
Source§impl Default for ListEntryQuery
impl Default for ListEntryQuery
Source§fn default() -> ListEntryQuery
fn default() -> ListEntryQuery
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListEntryQuery
impl<'de> Deserialize<'de> for ListEntryQuery
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ListEntryQuery
impl RefUnwindSafe for ListEntryQuery
impl Send for ListEntryQuery
impl Sync for ListEntryQuery
impl Unpin for ListEntryQuery
impl UnwindSafe for ListEntryQuery
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