[][src]Struct annis::AuthorizeUrl

pub struct AuthorizeUrl {
    pub client_id: String,
    pub redirect_uri: String,
    pub scope: String,
}

To make Authorize URL.

Fields

client_id: Stringredirect_uri: Stringscope: String

Methods

impl AuthorizeUrl
[src]

pub fn new(client_id: String) -> Self
[src]

pub fn redirect_uri<P>(&mut self, redirect_uri: P) -> &mut Self where
    P: Into<String>, 
[src]

pub fn scope<P>(&mut self, scope: P) -> &mut Self where
    P: Into<String>, 
[src]

pub fn build(&self) -> String
[src]

Trait Implementations

impl PartialEq<AuthorizeUrl> for AuthorizeUrl
[src]

impl Debug for AuthorizeUrl
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T