#[non_exhaustive]pub struct UpdateFolderPolicyArg {
pub shared_folder_id: SharedFolderId,
pub member_policy: Option<MemberPolicy>,
pub acl_update_policy: Option<AclUpdatePolicy>,
pub viewer_info_policy: Option<ViewerInfoPolicy>,
pub shared_link_policy: Option<SharedLinkPolicy>,
pub link_settings: Option<LinkSettings>,
pub actions: Option<Vec<FolderAction>>,
}
Available on crate features
sync_routes
and dbx_sharing
only.Expand description
If any of the policies are unset, then they retain their current setting.
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.The ID for the shared folder.
member_policy: Option<MemberPolicy>
Who can be a member of this shared folder. Only applicable if the current user is on a team.
acl_update_policy: Option<AclUpdatePolicy>
Who can add and remove members of this shared folder.
viewer_info_policy: Option<ViewerInfoPolicy>
Who can enable/disable viewer info for this shared folder.
The policy to apply to shared links created for content inside this shared folder. The
current user must be on a team to set this policy to SharedLinkPolicy::Members
.
link_settings: Option<LinkSettings>
Settings on the link for this folder.
actions: Option<Vec<FolderAction>>
A list of FolderAction
s corresponding to FolderPermission
s that should appear in the
response’s SharedFolderMetadata::permissions
field describing the
actions the authenticated user can perform on the folder.
Implementations§
Source§impl UpdateFolderPolicyArg
impl UpdateFolderPolicyArg
pub fn new(shared_folder_id: SharedFolderId) -> Self
pub fn with_member_policy(self, value: MemberPolicy) -> Self
pub fn with_acl_update_policy(self, value: AclUpdatePolicy) -> Self
pub fn with_viewer_info_policy(self, value: ViewerInfoPolicy) -> Self
pub fn with_link_settings(self, value: LinkSettings) -> Self
pub fn with_actions(self, value: Vec<FolderAction>) -> Self
Trait Implementations§
Source§impl Clone for UpdateFolderPolicyArg
impl Clone for UpdateFolderPolicyArg
Source§fn clone(&self) -> UpdateFolderPolicyArg
fn clone(&self) -> UpdateFolderPolicyArg
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 UpdateFolderPolicyArg
impl Debug for UpdateFolderPolicyArg
Source§impl<'de> Deserialize<'de> for UpdateFolderPolicyArg
impl<'de> Deserialize<'de> for UpdateFolderPolicyArg
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 UpdateFolderPolicyArg
impl PartialEq for UpdateFolderPolicyArg
Source§impl Serialize for UpdateFolderPolicyArg
impl Serialize for UpdateFolderPolicyArg
impl Eq for UpdateFolderPolicyArg
impl StructuralPartialEq for UpdateFolderPolicyArg
Auto Trait Implementations§
impl Freeze for UpdateFolderPolicyArg
impl RefUnwindSafe for UpdateFolderPolicyArg
impl Send for UpdateFolderPolicyArg
impl Sync for UpdateFolderPolicyArg
impl Unpin for UpdateFolderPolicyArg
impl UnwindSafe for UpdateFolderPolicyArg
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.