pub struct KeyResponse {
pub keys: Vec<String>,
pub cursor: Option<u64>,
}
Expand description
A response to a list-keys
operation.
Fields§
§keys: Vec<String>
The list of keys returned by the query.
cursor: Option<u64>
The continuation token to use to fetch the next page of keys. If this is null
, then
there are no more keys to fetch.
Trait Implementations§
Source§impl Clone for KeyResponse
impl Clone for KeyResponse
Source§fn clone(&self) -> KeyResponse
fn clone(&self) -> KeyResponse
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 moreAuto Trait Implementations§
impl Freeze for KeyResponse
impl RefUnwindSafe for KeyResponse
impl Send for KeyResponse
impl Sync for KeyResponse
impl Unpin for KeyResponse
impl UnwindSafe for KeyResponse
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