Struct dropbox_sdk::team_common::GroupSummary
source · [−]#[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 feature
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: Stringgroup_id: GroupIdgroup_management_type: GroupManagementTypeWho 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
sourceimpl 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
sourceimpl Clone for GroupSummary
impl Clone for GroupSummary
sourcefn clone(&self) -> GroupSummary
fn clone(&self) -> GroupSummary
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for GroupSummary
impl Debug for GroupSummary
sourceimpl<'de> Deserialize<'de> for GroupSummary
impl<'de> Deserialize<'de> for GroupSummary
sourcefn 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
sourceimpl PartialEq<GroupSummary> for GroupSummary
impl PartialEq<GroupSummary> for GroupSummary
sourcefn eq(&self, other: &GroupSummary) -> bool
fn eq(&self, other: &GroupSummary) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &GroupSummary) -> bool
fn ne(&self, other: &GroupSummary) -> bool
This method tests for !=.
sourceimpl Serialize for GroupSummary
impl Serialize for GroupSummary
impl Eq for GroupSummary
impl StructuralEq for GroupSummary
impl StructuralPartialEq for GroupSummary
Auto Trait Implementations
impl RefUnwindSafe for GroupSummary
impl Send for GroupSummary
impl Sync for GroupSummary
impl Unpin for GroupSummary
impl UnwindSafe for GroupSummary
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more