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§impl Debug for IQScanOptions
impl Debug for IQScanOptions
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