Enum dropbox_sdk::oauth2::Oauth2Type [−][src]
Which type of OAuth2 flow to use.
Variants
Authorization yields a temporary authorization code which must be turned into an OAuth2 token by making another call. This can be used without a redirect URI, where the user inputs the code directly into the program.
Authorization directly returns an OAuth2 token. This can only be used with a redirect URI where the Dropbox server redirects the user's web browser to the program.
Implementations
impl Oauth2Type
[src]
pub fn as_str(self) -> &'static str
[src]
The value to put in the "response_type" parameter to request the given token type.
Trait Implementations
impl Clone for Oauth2Type
[src]
fn clone(&self) -> Oauth2Type
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for Oauth2Type
[src]
impl Debug for Oauth2Type
[src]
Auto Trait Implementations
impl RefUnwindSafe for Oauth2Type
impl Send for Oauth2Type
impl Sync for Oauth2Type
impl Unpin for Oauth2Type
impl UnwindSafe for Oauth2Type
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,