pub struct ListProjectApiKeysQuery {
pub limit: Option<u32>,
pub after: Option<String>,
}Available on crate feature
administration-types only.Expand description
Query parameters for listing project API keys.
Fields§
§limit: Option<u32>A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 20.
after: Option<String>A cursor for use in pagination. after is an object ID that defines your place in the
list.
Trait Implementations§
Source§impl Clone for ListProjectApiKeysQuery
impl Clone for ListProjectApiKeysQuery
Source§fn clone(&self) -> ListProjectApiKeysQuery
fn clone(&self) -> ListProjectApiKeysQuery
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 ListProjectApiKeysQuery
impl Debug for ListProjectApiKeysQuery
Source§impl Default for ListProjectApiKeysQuery
impl Default for ListProjectApiKeysQuery
Source§fn default() -> ListProjectApiKeysQuery
fn default() -> ListProjectApiKeysQuery
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListProjectApiKeysQuery
impl PartialEq for ListProjectApiKeysQuery
Source§impl Serialize for ListProjectApiKeysQuery
impl Serialize for ListProjectApiKeysQuery
impl StructuralPartialEq for ListProjectApiKeysQuery
Auto Trait Implementations§
impl Freeze for ListProjectApiKeysQuery
impl RefUnwindSafe for ListProjectApiKeysQuery
impl Send for ListProjectApiKeysQuery
impl Sync for ListProjectApiKeysQuery
impl Unpin for ListProjectApiKeysQuery
impl UnsafeUnpin for ListProjectApiKeysQuery
impl UnwindSafe for ListProjectApiKeysQuery
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