[][src]Struct dropbox_sdk::Oauth2AuthorizeUrlBuilder

pub struct Oauth2AuthorizeUrlBuilder<'a> { /* fields omitted */ }

Builds a URL that can be given to the user to visit to have Dropbox authorize your app.

Methods

impl<'a> Oauth2AuthorizeUrlBuilder<'a>[src]

pub fn new(client_id: &'a str, oauth2_type: Oauth2Type) -> Self[src]

pub fn force_reapprove(self, value: bool) -> Self[src]

pub fn force_reauthentication(self, value: bool) -> Self[src]

pub fn disable_signup(self, value: bool) -> Self[src]

pub fn redirect_uri(self, value: &'a str) -> Self[src]

pub fn state(self, value: &'a str) -> Self[src]

pub fn require_role(self, value: &'a str) -> Self[src]

pub fn locale(self, value: &'a str) -> Self[src]

pub fn build(self) -> Url[src]

Trait Implementations

impl<'a> Debug for Oauth2AuthorizeUrlBuilder<'a>[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any