pub struct ListKeysOptions {
pub offset: Option<u32>,
pub include_disabled: Option<bool>,
}Expand description
Optional query parameters for crate::Client::list_keys.
Fields§
§offset: Option<u32>Pagination offset.
include_disabled: Option<bool>Include disabled keys in the response.
Implementations§
Source§impl ListKeysOptions
impl ListKeysOptions
Sourcepub fn offset(self, offset: u32) -> Self
pub fn offset(self, offset: u32) -> Self
Builder: set Self::offset.
Sourcepub fn include_disabled(self, include: bool) -> Self
pub fn include_disabled(self, include: bool) -> Self
Builder: set Self::include_disabled.
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 moreimpl Copy for ListKeysOptions
Source§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
impl Eq for ListKeysOptions
Source§impl PartialEq for ListKeysOptions
impl PartialEq for ListKeysOptions
impl StructuralPartialEq for ListKeysOptions
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