pub struct IQScanOptions {
pub start: Option<String>,
pub end: Option<String>,
pub limit: Option<u32>,
}Expand description
Optional range bounds + page size for IQResource::scan and
IQResource::list_keys.
Default = no range, limit 100. Limit > 1000 is clamped server-side
(response carries X-Pulse-Pagination-Clamped: true header when
clamped — not surfaced in the parsed body).
Fields§
§start: Option<String>Inclusive lower bound on the key range. None = beginning.
end: Option<String>Exclusive upper bound on the key range. None = end.
limit: Option<u32>Page size. None defaults to 100.
Implementations§
Source§impl IQScanOptions
impl IQScanOptions
Trait Implementations§
Source§impl Clone for IQScanOptions
impl Clone for IQScanOptions
Source§fn clone(&self) -> IQScanOptions
fn clone(&self) -> IQScanOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 IQScanOptions
impl Debug for IQScanOptions
Source§impl Default for IQScanOptions
impl Default for IQScanOptions
Source§fn default() -> IQScanOptions
fn default() -> IQScanOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for IQScanOptions
impl RefUnwindSafe for IQScanOptions
impl Send for IQScanOptions
impl Sync for IQScanOptions
impl Unpin for IQScanOptions
impl UnsafeUnpin for IQScanOptions
impl UnwindSafe for IQScanOptions
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