pub struct GetManyParams {
pub query: Option<Query>,
pub limit: Option<u32>,
pub skip: Option<u32>,
pub asc: Option<String>,
pub desc: Option<String>,
pub include_count: Option<bool>,
pub include_publish_details: Option<bool>,
pub include_metadata: Option<bool>,
pub locale: Option<String>,
pub environment: 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).
asc: Option<String>Field name to sort ascending.
desc: Option<String>Field name to sort descending.
include_count: Option<bool>When true, includes the total entry count in the response.
include_publish_details: Option<bool>When true, includes publish details in the response.
include_metadata: Option<bool>When true, includes entry metadata in the response.
locale: Option<String>Locale code to fetch entries for (e.g. "en-us").
environment: Option<String>Environment name to fetch entries for.
Trait Implementations§
Source§impl Clone for GetManyParams
impl Clone for GetManyParams
Source§fn clone(&self) -> GetManyParams
fn clone(&self) -> GetManyParams
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 GetManyParams
impl Debug for GetManyParams
Source§impl Default for GetManyParams
impl Default for GetManyParams
Source§fn default() -> GetManyParams
fn default() -> GetManyParams
Returns the “default value” for a type. Read more
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