pub struct Group {
pub name: Option<String>,
pub group_id: Option<String>,
pub _self: Option<String>,
pub users: Option<PagedListUserDetailsApplicationUser>,
pub expand: Option<String>,
}
Fields§
§name: Option<String>
The name of group.
group_id: Option<String>
The ID of the group, which uniquely identifies the group across all Atlassian products. For example, 952d12c3-5b5b-4d04-bb32-44d383afc4b2.
_self: Option<String>
The URL for these group details.
users: Option<PagedListUserDetailsApplicationUser>
A paginated list of the users that are members of the group. A maximum of 50 users is returned in the list, to access additional users append [start-index:end-index]
to the expand request. For example, to access the next 50 users, use?expand=users[51:100]
.
expand: Option<String>
Expand options that include additional group details in the response.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Group
impl<'de> Deserialize<'de> for Group
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 Group
Auto Trait Implementations§
impl Freeze for Group
impl RefUnwindSafe for Group
impl Send for Group
impl Sync for Group
impl Unpin for Group
impl UnwindSafe for Group
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