Struct dropbox_sdk::sharing::UpdateFolderPolicyArg
source · [−]#[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>>,
}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
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 FolderActions corresponding to FolderPermissions that should appear in the
response’s SharedFolderMetadata::permissions field describing the
actions the authenticated user can perform on the folder.
Implementations
sourceimpl 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
sourceimpl Clone for UpdateFolderPolicyArg
impl Clone for UpdateFolderPolicyArg
sourcefn clone(&self) -> UpdateFolderPolicyArg
fn clone(&self) -> UpdateFolderPolicyArg
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 UpdateFolderPolicyArg
impl Debug for UpdateFolderPolicyArg
sourceimpl<'de> Deserialize<'de> for UpdateFolderPolicyArg
impl<'de> Deserialize<'de> for UpdateFolderPolicyArg
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<UpdateFolderPolicyArg> for UpdateFolderPolicyArg
impl PartialEq<UpdateFolderPolicyArg> for UpdateFolderPolicyArg
sourcefn eq(&self, other: &UpdateFolderPolicyArg) -> bool
fn eq(&self, other: &UpdateFolderPolicyArg) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &UpdateFolderPolicyArg) -> bool
fn ne(&self, other: &UpdateFolderPolicyArg) -> bool
This method tests for !=.
sourceimpl Serialize for UpdateFolderPolicyArg
impl Serialize for UpdateFolderPolicyArg
impl Eq for UpdateFolderPolicyArg
impl StructuralEq for UpdateFolderPolicyArg
impl StructuralPartialEq for UpdateFolderPolicyArg
Auto Trait Implementations
impl RefUnwindSafe for UpdateFolderPolicyArg
impl Send for UpdateFolderPolicyArg
impl Sync for UpdateFolderPolicyArg
impl Unpin for UpdateFolderPolicyArg
impl UnwindSafe for UpdateFolderPolicyArg
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