pub struct ListPublicKeysRequest {
pub marker: Option<String>,
pub max_items: Option<String>,
}
Fields§
§marker: Option<String>
Use this when paginating results to indicate where to begin in your list of public keys. The results include public keys in the list that occur after the marker. To get the next page of results, set the Marker
to the value of the NextMarker
from the current page's response (which is also the ID of the last public key on that page).
max_items: Option<String>
The maximum number of public keys you want in the response body.
Trait Implementations§
Source§impl Clone for ListPublicKeysRequest
impl Clone for ListPublicKeysRequest
Source§fn clone(&self) -> ListPublicKeysRequest
fn clone(&self) -> ListPublicKeysRequest
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 ListPublicKeysRequest
impl Debug for ListPublicKeysRequest
Source§impl Default for ListPublicKeysRequest
impl Default for ListPublicKeysRequest
Source§fn default() -> ListPublicKeysRequest
fn default() -> ListPublicKeysRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListPublicKeysRequest
impl PartialEq for ListPublicKeysRequest
impl StructuralPartialEq for ListPublicKeysRequest
Auto Trait Implementations§
impl Freeze for ListPublicKeysRequest
impl RefUnwindSafe for ListPublicKeysRequest
impl Send for ListPublicKeysRequest
impl Sync for ListPublicKeysRequest
impl Unpin for ListPublicKeysRequest
impl UnwindSafe for ListPublicKeysRequest
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