pub enum FolderSharingPolicyType {
Team,
InviteOnly,
}
Available on crate features
async_routes
and dbx_paper
only.Expand description
The sharing policy of a Paper folder. The sharing policy of subfolders is inherited from the root folder.
Variants§
Team
Everyone in your team and anyone directly invited can access this folder.
InviteOnly
Only people directly invited can access this folder.
Trait Implementations§
Source§impl Clone for FolderSharingPolicyType
impl Clone for FolderSharingPolicyType
Source§fn clone(&self) -> FolderSharingPolicyType
fn clone(&self) -> FolderSharingPolicyType
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 FolderSharingPolicyType
impl Debug for FolderSharingPolicyType
Source§impl<'de> Deserialize<'de> for FolderSharingPolicyType
impl<'de> Deserialize<'de> for FolderSharingPolicyType
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 FolderSharingPolicyType
impl PartialEq for FolderSharingPolicyType
Source§impl Serialize for FolderSharingPolicyType
impl Serialize for FolderSharingPolicyType
impl Eq for FolderSharingPolicyType
impl StructuralPartialEq for FolderSharingPolicyType
Auto Trait Implementations§
impl Freeze for FolderSharingPolicyType
impl RefUnwindSafe for FolderSharingPolicyType
impl Send for FolderSharingPolicyType
impl Sync for FolderSharingPolicyType
impl Unpin for FolderSharingPolicyType
impl UnwindSafe for FolderSharingPolicyType
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.