pub struct KeyList {
pub keys: Vec<KeyInfo>,
pub is_truncated: bool,
pub next_exclusive_start_key: Option<String>,
}Expand description
A page of keys and continuation metadata.
Fields§
§keys: Vec<KeyInfo>Keys in this page.
is_truncated: boolWhether more keys remain.
next_exclusive_start_key: Option<String>Continuation key for the next page.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for KeyList
impl RefUnwindSafe for KeyList
impl Send for KeyList
impl Sync for KeyList
impl Unpin for KeyList
impl UnsafeUnpin for KeyList
impl UnwindSafe for KeyList
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