pub struct GroupListResource {
pub object: String,
pub data: Vec<GroupResponse>,
pub has_more: bool,
pub next: Option<String>,
}Available on crate feature
administration-types only.Expand description
Paginated list of organization groups.
Fields§
§object: StringThe object type, which is always list.
data: Vec<GroupResponse>Groups returned in the current page.
has_more: boolWhether additional groups are available when paginating.
next: Option<String>Cursor to fetch the next page of results, or null if there are no more results.
Trait Implementations§
Source§impl Clone for GroupListResource
impl Clone for GroupListResource
Source§fn clone(&self) -> GroupListResource
fn clone(&self) -> GroupListResource
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 GroupListResource
impl Debug for GroupListResource
Source§impl<'de> Deserialize<'de> for GroupListResource
impl<'de> Deserialize<'de> for GroupListResource
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 GroupListResource
impl PartialEq for GroupListResource
Source§impl Serialize for GroupListResource
impl Serialize for GroupListResource
impl StructuralPartialEq for GroupListResource
Auto Trait Implementations§
impl Freeze for GroupListResource
impl RefUnwindSafe for GroupListResource
impl Send for GroupListResource
impl Sync for GroupListResource
impl Unpin for GroupListResource
impl UnsafeUnpin for GroupListResource
impl UnwindSafe for GroupListResource
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