pub struct ListGroupsQuery {
pub limit: Option<u32>,
pub after: Option<String>,
pub order: Option<ListGroupsOrder>,
}Available on crate feature
administration-types only.Expand description
Query parameters for listing groups.
Fields§
§limit: Option<u32>A limit on the number of groups to be returned. Limit can range between 0 and 1000, and the default is 100.
after: Option<String>A cursor for use in pagination. after is a group ID that defines your place in the list.
order: Option<ListGroupsOrder>Specifies the sort order of the returned groups.
Trait Implementations§
Source§impl Clone for ListGroupsQuery
impl Clone for ListGroupsQuery
Source§fn clone(&self) -> ListGroupsQuery
fn clone(&self) -> ListGroupsQuery
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 ListGroupsQuery
impl Debug for ListGroupsQuery
Source§impl Default for ListGroupsQuery
impl Default for ListGroupsQuery
Source§fn default() -> ListGroupsQuery
fn default() -> ListGroupsQuery
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListGroupsQuery
impl PartialEq for ListGroupsQuery
Source§impl Serialize for ListGroupsQuery
impl Serialize for ListGroupsQuery
impl StructuralPartialEq for ListGroupsQuery
Auto Trait Implementations§
impl Freeze for ListGroupsQuery
impl RefUnwindSafe for ListGroupsQuery
impl Send for ListGroupsQuery
impl Sync for ListGroupsQuery
impl Unpin for ListGroupsQuery
impl UnsafeUnpin for ListGroupsQuery
impl UnwindSafe for ListGroupsQuery
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