#[non_exhaustive]pub struct TeamMemberPolicies {
pub sharing: TeamSharingPolicies,
pub emm_state: EmmState,
pub office_addin: OfficeAddInPolicy,
pub suggest_members_policy: SuggestMembersPolicy,
}Available on crate features
async_routes and dbx_team_policies only.Expand description
Policies governing team members.
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.sharing: TeamSharingPoliciesPolicies governing sharing.
emm_state: EmmStateThis describes the Enterprise Mobility Management (EMM) state for this team. This information can be used to understand if an organization is integrating with a third-party EMM vendor to further manage and apply restrictions upon the team’s Dropbox usage on mobile devices. This is a new feature and in the future we’ll be adding more new fields and additional documentation.
office_addin: OfficeAddInPolicyThe admin policy around the Dropbox Office Add-In for this team.
suggest_members_policy: SuggestMembersPolicyThe team policy on if teammembers are allowed to suggest users for admins to invite to the team.
Implementations§
Source§impl TeamMemberPolicies
impl TeamMemberPolicies
pub fn new( sharing: TeamSharingPolicies, emm_state: EmmState, office_addin: OfficeAddInPolicy, suggest_members_policy: SuggestMembersPolicy, ) -> Self
Trait Implementations§
Source§impl Clone for TeamMemberPolicies
impl Clone for TeamMemberPolicies
Source§fn clone(&self) -> TeamMemberPolicies
fn clone(&self) -> TeamMemberPolicies
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 TeamMemberPolicies
impl Debug for TeamMemberPolicies
Source§impl<'de> Deserialize<'de> for TeamMemberPolicies
impl<'de> Deserialize<'de> for TeamMemberPolicies
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 PartialEq for TeamMemberPolicies
impl PartialEq for TeamMemberPolicies
Source§impl Serialize for TeamMemberPolicies
impl Serialize for TeamMemberPolicies
impl Eq for TeamMemberPolicies
impl StructuralPartialEq for TeamMemberPolicies
Auto Trait Implementations§
impl Freeze for TeamMemberPolicies
impl RefUnwindSafe for TeamMemberPolicies
impl Send for TeamMemberPolicies
impl Sync for TeamMemberPolicies
impl Unpin for TeamMemberPolicies
impl UnwindSafe for TeamMemberPolicies
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.