pub struct GetManyParams<'a> {
pub query: Option<&'a Query>,
pub limit: Option<u32>,
pub skip: Option<u32>,
pub include_count: Option<bool>,
pub locale: Option<&'a str>,
}Expand description
Query parameters for fetching multiple entries.
Fields§
§query: Option<&'a Query>JSON query filter - serialized internally, no need to stringify manually.
limit: Option<u32>Maximum number of entries to return.
skip: Option<u32>Number of entries to skip (for pagination).
include_count: Option<bool>When true, includes the total entry count in the response.
locale: Option<&'a str>Locale code to fetch entries for (e.g. "en-us").
Auto Trait Implementations§
impl<'a> Freeze for GetManyParams<'a>
impl<'a> RefUnwindSafe for GetManyParams<'a>
impl<'a> Send for GetManyParams<'a>
impl<'a> Sync for GetManyParams<'a>
impl<'a> Unpin for GetManyParams<'a>
impl<'a> UnsafeUnpin for GetManyParams<'a>
impl<'a> UnwindSafe for GetManyParams<'a>
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