pub struct ListOptions {
pub limit: Option<usize>,
pub start_after: Option<String>,
pub recursive: bool,
pub versions: bool,
pub deleted: bool,
}Expand description
Options for list operations.
§Groups
- Traversal:
recursive. - Pagination:
limit,start_after. - Versioning:
versions,deleted(effective on version-aware backends).
Fields§
§limit: Option<usize>Maximum results per request (backend hint) to control memory and throttling.
start_after: Option<String>The start_after passes to underlying service to specify the specified key to start listing from.
recursive: boolWhether to list recursively under the prefix; default false.
versions: boolInclude object versions when supported by the backend; default false.
deleted: boolInclude delete markers when supported by version-aware backends; default false.
Trait Implementations§
Source§impl Clone for ListOptions
impl Clone for ListOptions
Source§fn clone(&self) -> ListOptions
fn clone(&self) -> ListOptions
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 ListOptions
impl Debug for ListOptions
Source§impl Default for ListOptions
impl Default for ListOptions
Source§fn default() -> ListOptions
fn default() -> ListOptions
Returns the “default value” for a type. Read more
Source§impl From<ListOptions> for OpList
impl From<ListOptions> for OpList
Source§fn from(value: ListOptions) -> Self
fn from(value: ListOptions) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ListOptions
impl PartialEq for ListOptions
impl Eq for ListOptions
impl StructuralPartialEq for ListOptions
Auto Trait Implementations§
impl Freeze for ListOptions
impl RefUnwindSafe for ListOptions
impl Send for ListOptions
impl Sync for ListOptions
impl Unpin for ListOptions
impl UnwindSafe for ListOptions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.