pub struct ListProjectServiceAccountsParams {
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 ListProjectServiceAccountsParams
impl ListProjectServiceAccountsParams
Sourcepub fn builder() -> ListProjectServiceAccountsParamsBuilder<((), (), ())>
pub fn builder() -> ListProjectServiceAccountsParamsBuilder<((), (), ())>
Create a builder for building ListProjectServiceAccountsParams
.
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 ListProjectServiceAccountsParams
.
Trait Implementations§
Source§impl Clone for ListProjectServiceAccountsParams
impl Clone for ListProjectServiceAccountsParams
Source§fn clone(&self) -> ListProjectServiceAccountsParams
fn clone(&self) -> ListProjectServiceAccountsParams
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<'de> Deserialize<'de> for ListProjectServiceAccountsParams
impl<'de> Deserialize<'de> for ListProjectServiceAccountsParams
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 ListProjectServiceAccountsParams
impl PartialEq for ListProjectServiceAccountsParams
Source§fn eq(&self, other: &ListProjectServiceAccountsParams) -> bool
fn eq(&self, other: &ListProjectServiceAccountsParams) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListProjectServiceAccountsParams
Auto Trait Implementations§
impl Freeze for ListProjectServiceAccountsParams
impl RefUnwindSafe for ListProjectServiceAccountsParams
impl Send for ListProjectServiceAccountsParams
impl Sync for ListProjectServiceAccountsParams
impl Unpin for ListProjectServiceAccountsParams
impl UnwindSafe for ListProjectServiceAccountsParams
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