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