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