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