pub struct ListApiKeysQuery {
pub config_id: Option<String>,
pub organization_id: Option<String>,
pub limit: Option<usize>,
pub offset: Option<usize>,
pub sort_by: Option<String>,
pub sort_direction: Option<String>,
}Fields§
§config_id: Option<String>§organization_id: Option<String>§limit: Option<usize>§offset: Option<usize>§sort_by: Option<String>§sort_direction: Option<String>Trait Implementations§
Source§impl Clone for ListApiKeysQuery
impl Clone for ListApiKeysQuery
Source§fn clone(&self) -> ListApiKeysQuery
fn clone(&self) -> ListApiKeysQuery
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 ListApiKeysQuery
impl Debug for ListApiKeysQuery
Source§impl Default for ListApiKeysQuery
impl Default for ListApiKeysQuery
Source§fn default() -> ListApiKeysQuery
fn default() -> ListApiKeysQuery
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListApiKeysQuery
impl<'de> Deserialize<'de> for ListApiKeysQuery
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ListApiKeysQuery
impl RefUnwindSafe for ListApiKeysQuery
impl Send for ListApiKeysQuery
impl Sync for ListApiKeysQuery
impl Unpin for ListApiKeysQuery
impl UnsafeUnpin for ListApiKeysQuery
impl UnwindSafe for ListApiKeysQuery
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