pub struct ListKeysOptions {
pub limit: Option<i64>,
pub exclusive_start_key: Option<String>,
pub prefix: Option<String>,
pub collection: Option<String>,
pub signature: Option<String>,
}Expand description
Options for listing keys in a key-value store.
Fields§
§limit: Option<i64>Maximum number of keys to return.
exclusive_start_key: Option<String>Start listing after this key (exclusive), for pagination.
prefix: Option<String>Only return keys with this prefix.
collection: Option<String>Only return keys belonging to this collection.
signature: Option<String>URL-signing signature granting access to a private store’s key listing.
Trait Implementations§
Source§impl Clone for ListKeysOptions
impl Clone for ListKeysOptions
Source§fn clone(&self) -> ListKeysOptions
fn clone(&self) -> ListKeysOptions
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 ListKeysOptions
impl Debug for ListKeysOptions
Source§impl Default for ListKeysOptions
impl Default for ListKeysOptions
Source§fn default() -> ListKeysOptions
fn default() -> ListKeysOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListKeysOptions
impl RefUnwindSafe for ListKeysOptions
impl Send for ListKeysOptions
impl Sync for ListKeysOptions
impl Unpin for ListKeysOptions
impl UnsafeUnpin for ListKeysOptions
impl UnwindSafe for ListKeysOptions
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