#[non_exhaustive]pub struct GroupSummary {
pub group_name: String,
pub group_id: GroupId,
pub group_management_type: GroupManagementType,
pub group_external_id: Option<GroupExternalId>,
pub member_count: Option<u32>,
}
Available on crate features
async_routes
and dbx_team_common
only.Expand description
Information about a group.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.group_name: String
§group_id: GroupId
§group_management_type: GroupManagementType
Who is allowed to manage the group.
group_external_id: Option<GroupExternalId>
External ID of group. This is an arbitrary ID that an admin can attach to a group.
member_count: Option<u32>
The number of members in the group.
Implementations§
Source§impl GroupSummary
impl GroupSummary
pub fn new( group_name: String, group_id: GroupId, group_management_type: GroupManagementType, ) -> Self
pub fn with_group_external_id(self, value: GroupExternalId) -> Self
pub fn with_member_count(self, value: u32) -> Self
Trait Implementations§
Source§impl Clone for GroupSummary
impl Clone for GroupSummary
Source§fn clone(&self) -> GroupSummary
fn clone(&self) -> GroupSummary
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 GroupSummary
impl Debug for GroupSummary
Source§impl<'de> Deserialize<'de> for GroupSummary
impl<'de> Deserialize<'de> for GroupSummary
Source§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<GroupFullInfo> for GroupSummary
Available on crate feature dbx_team
only.
impl From<GroupFullInfo> for GroupSummary
Available on crate feature
dbx_team
only.Source§fn from(subtype: GroupFullInfo) -> Self
fn from(subtype: GroupFullInfo) -> Self
Converts to this type from the input type.
Source§impl From<GroupInfo> for GroupSummary
Available on crate feature dbx_sharing
only.
impl From<GroupInfo> for GroupSummary
Available on crate feature
dbx_sharing
only.Source§impl PartialEq for GroupSummary
impl PartialEq for GroupSummary
Source§impl Serialize for GroupSummary
impl Serialize for GroupSummary
impl Eq for GroupSummary
impl StructuralPartialEq for GroupSummary
Auto Trait Implementations§
impl Freeze for GroupSummary
impl RefUnwindSafe for GroupSummary
impl Send for GroupSummary
impl Sync for GroupSummary
impl Unpin for GroupSummary
impl UnwindSafe for GroupSummary
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.