pub struct ListProjectApiKeysParams {
pub project_id: String,
pub limit: Option<i64>,
pub after: Option<String>,
}
Fields§
§project_id: String
The ID of the project.
limit: Option<i64>
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. For instance, if you make a list request and receive 100 objects, ending with obj_foo, your subsequent call can include after=obj_foo in order to fetch the next page of the list.
Implementations§
Source§impl ListProjectApiKeysParams
impl ListProjectApiKeysParams
Sourcepub fn builder() -> ListProjectApiKeysParamsBuilder<((), (), ())>
pub fn builder() -> ListProjectApiKeysParamsBuilder<((), (), ())>
Create a builder for building ListProjectApiKeysParams
.
On the builder, call .project_id(...)
, .limit(...)
(optional), .after(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of ListProjectApiKeysParams
.
Trait Implementations§
Source§impl Clone for ListProjectApiKeysParams
impl Clone for ListProjectApiKeysParams
Source§fn clone(&self) -> ListProjectApiKeysParams
fn clone(&self) -> ListProjectApiKeysParams
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ListProjectApiKeysParams
impl Debug for ListProjectApiKeysParams
Source§impl<'de> Deserialize<'de> for ListProjectApiKeysParams
impl<'de> Deserialize<'de> for ListProjectApiKeysParams
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
Source§impl PartialEq for ListProjectApiKeysParams
impl PartialEq for ListProjectApiKeysParams
Source§fn eq(&self, other: &ListProjectApiKeysParams) -> bool
fn eq(&self, other: &ListProjectApiKeysParams) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl Serialize for ListProjectApiKeysParams
impl Serialize for ListProjectApiKeysParams
impl StructuralPartialEq for ListProjectApiKeysParams
Auto Trait Implementations§
impl Freeze for ListProjectApiKeysParams
impl RefUnwindSafe for ListProjectApiKeysParams
impl Send for ListProjectApiKeysParams
impl Sync for ListProjectApiKeysParams
impl Unpin for ListProjectApiKeysParams
impl UnwindSafe for ListProjectApiKeysParams
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