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