Struct dropbox_sdk::users::FullTeam [−][src]
#[non_exhaustive]pub struct FullTeam { pub id: String, pub name: String, pub sharing_policies: TeamSharingPolicies, pub office_addin_policy: OfficeAddInPolicy, }
This is supported on crate feature
dbx_users only.Expand description
Detailed information about a team.
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.id: StringThe team’s unique ID.
name: StringThe name of the team.
sharing_policies: TeamSharingPoliciesTeam policies governing sharing.
office_addin_policy: OfficeAddInPolicyTeam policy governing the use of the Office Add-In.
Implementations
pub fn new(
id: String,
name: String,
sharing_policies: TeamSharingPolicies,
office_addin_policy: OfficeAddInPolicy
) -> SelfTrait Implementations
Auto Trait Implementations
impl RefUnwindSafe for FullTeamimpl UnwindSafe for FullTeamBlanket Implementations
Mutably borrows from an owned value. Read more