#[non_exhaustive]pub struct ListKeysOptions {
pub limit: Option<usize>,
pub exclusive_start_key: Option<String>,
}Expand description
Options controlling key pagination.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.limit: Option<usize>Maximum number of keys to return.
exclusive_start_key: Option<String>Key after which listing begins.
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