Struct dropbox_sdk::team_policies::TeamMemberPolicies
source · [−]#[non_exhaustive]pub struct TeamMemberPolicies {
pub sharing: TeamSharingPolicies,
pub emm_state: EmmState,
pub office_addin: OfficeAddInPolicy,
pub suggest_members_policy: SuggestMembersPolicy,
}dbx_team_policies only.Expand description
Policies governing team members.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
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
sourceimpl TeamMemberPolicies
impl TeamMemberPolicies
pub fn new(
sharing: TeamSharingPolicies,
emm_state: EmmState,
office_addin: OfficeAddInPolicy,
suggest_members_policy: SuggestMembersPolicy
) -> Self
Trait Implementations
sourceimpl Clone for TeamMemberPolicies
impl Clone for TeamMemberPolicies
sourcefn clone(&self) -> TeamMemberPolicies
fn clone(&self) -> TeamMemberPolicies
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 TeamMemberPolicies
impl Debug for TeamMemberPolicies
sourceimpl<'de> Deserialize<'de> for TeamMemberPolicies
impl<'de> Deserialize<'de> for TeamMemberPolicies
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<TeamMemberPolicies> for TeamMemberPolicies
impl PartialEq<TeamMemberPolicies> for TeamMemberPolicies
sourcefn eq(&self, other: &TeamMemberPolicies) -> bool
fn eq(&self, other: &TeamMemberPolicies) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &TeamMemberPolicies) -> bool
fn ne(&self, other: &TeamMemberPolicies) -> bool
This method tests for !=.
sourceimpl Serialize for TeamMemberPolicies
impl Serialize for TeamMemberPolicies
impl Eq for TeamMemberPolicies
impl StructuralEq for TeamMemberPolicies
impl StructuralPartialEq for TeamMemberPolicies
Auto Trait Implementations
impl RefUnwindSafe for TeamMemberPolicies
impl Send for TeamMemberPolicies
impl Sync for TeamMemberPolicies
impl Unpin for TeamMemberPolicies
impl UnwindSafe for TeamMemberPolicies
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