Struct dropbox_sdk::sharing::AddMember [−][src]
#[non_exhaustive]pub struct AddMember { pub member: MemberSelector, pub access_level: AccessLevel, }
This is supported on crate feature
dbx_sharing only.Expand description
The member and type of access the member should have when added to a shared folder.
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.member: MemberSelectorThe member to add to the shared folder.
access_level: AccessLevelThe access level to grant member to the shared folder.
AccessLevel::Owner is disallowed.
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for AddMemberimpl UnwindSafe for AddMemberBlanket Implementations
Mutably borrows from an owned value. Read more