Struct dropbox_sdk::team::GroupFullInfo [−][src]
#[non_exhaustive]pub struct GroupFullInfo { pub group_name: String, pub group_id: GroupId, pub group_management_type: GroupManagementType, pub created: u64, pub group_external_id: Option<GroupExternalId>, pub member_count: Option<u32>, pub members: Option<Vec<GroupMemberInfo>>, }
This is supported on crate feature
dbx_team only.Expand description
Full description of 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.
created: u64The group creation time as a UTC timestamp in milliseconds since the Unix epoch.
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.
members: Option<Vec<GroupMemberInfo>>List of group members.
Implementations
pub fn new(
group_name: String,
group_id: GroupId,
group_management_type: GroupManagementType,
created: u64
) -> SelfTrait Implementations
Deserialize this value from the given Serde deserializer. Read more
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for GroupFullInfoimpl Send for GroupFullInfoimpl Sync for GroupFullInfoimpl Unpin for GroupFullInfoimpl UnwindSafe for GroupFullInfoBlanket Implementations
Mutably borrows from an owned value. Read more