pub struct ListProjectUsersQuery {
pub limit: Option<u32>,
pub after: Option<String>,
}Available on crate feature
administration-types only.Expand description
Query parameters for listing project users.
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 ListProjectUsersQuery
impl Clone for ListProjectUsersQuery
Source§fn clone(&self) -> ListProjectUsersQuery
fn clone(&self) -> ListProjectUsersQuery
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 ListProjectUsersQuery
impl Debug for ListProjectUsersQuery
Source§impl Default for ListProjectUsersQuery
impl Default for ListProjectUsersQuery
Source§fn default() -> ListProjectUsersQuery
fn default() -> ListProjectUsersQuery
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListProjectUsersQuery
impl PartialEq for ListProjectUsersQuery
Source§impl Serialize for ListProjectUsersQuery
impl Serialize for ListProjectUsersQuery
impl StructuralPartialEq for ListProjectUsersQuery
Auto Trait Implementations§
impl Freeze for ListProjectUsersQuery
impl RefUnwindSafe for ListProjectUsersQuery
impl Send for ListProjectUsersQuery
impl Sync for ListProjectUsersQuery
impl Unpin for ListProjectUsersQuery
impl UnsafeUnpin for ListProjectUsersQuery
impl UnwindSafe for ListProjectUsersQuery
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