pub struct GetManyParams {
pub query: Option<Query>,
pub limit: Option<u32>,
pub skip: Option<u32>,
pub include_count: Option<bool>,
pub locale: Option<String>,
}Expand description
Query parameters for fetching multiple entries.
Fields§
§query: Option<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<String>Locale code to fetch entries for (e.g. "en-us").
Auto Trait Implementations§
impl Freeze for GetManyParams
impl RefUnwindSafe for GetManyParams
impl Send for GetManyParams
impl Sync for GetManyParams
impl Unpin for GetManyParams
impl UnsafeUnpin for GetManyParams
impl UnwindSafe for GetManyParams
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