pub enum DropboxScope {
Show 13 variants
AccountInfoWrite,
AccountInfoRead,
FilesMetadataWrite,
FilesMetadataRead,
FilesContentWrite,
FilesContentRead,
SharingWrite,
SharingRead,
FileRequestsWrite,
FileRequestsRead,
ContactsWrite,
ContactsRead,
Other(String),
}
Variants§
AccountInfoWrite
AccountInfoRead
FilesMetadataWrite
FilesMetadataRead
FilesContentWrite
FilesContentRead
SharingWrite
SharingRead
FileRequestsWrite
FileRequestsRead
ContactsWrite
ContactsRead
Other(String)
Trait Implementations§
Source§impl Clone for DropboxScope
impl Clone for DropboxScope
Source§fn clone(&self) -> DropboxScope
fn clone(&self) -> DropboxScope
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DropboxScope
impl Debug for DropboxScope
Source§impl<'de> Deserialize<'de> for DropboxScope
impl<'de> Deserialize<'de> for DropboxScope
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for DropboxScope
impl Display for DropboxScope
Source§impl FromStr for DropboxScope
impl FromStr for DropboxScope
Source§impl PartialEq for DropboxScope
impl PartialEq for DropboxScope
Source§impl Serialize for DropboxScope
impl Serialize for DropboxScope
Source§impl TryFrom<&str> for DropboxScope
impl TryFrom<&str> for DropboxScope
Source§impl TryFrom<String> for DropboxScope
impl TryFrom<String> for DropboxScope
impl Eq for DropboxScope
impl Scope for DropboxScope
impl StructuralPartialEq for DropboxScope
Auto Trait Implementations§
impl Freeze for DropboxScope
impl RefUnwindSafe for DropboxScope
impl Send for DropboxScope
impl Sync for DropboxScope
impl Unpin for DropboxScope
impl UnwindSafe for DropboxScope
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