[][src]Struct annis::OAuth

pub struct OAuth {
    pub client_id: String,
}

A make request to autholize.

Fields

client_id: String

Methods

impl OAuth
[src]

pub fn client_id<P>(client_id: P) -> OAuth where
    P: Into<String>, 
[src]

pub fn info() -> Service<String>
[src]

Request to /oauth/token/info

Examples

let client = Client::set_token("annict_access_token");

let info = OAuth::info();

client.call(info)?;

pub fn revoke<A>(access_token: A) -> Service<String> where
    A: Into<String>, 
[src]

Request to /oauth/revoke

Examples

let client = Client::set_token("annict_access_token");

let revoke = OAuth::revoke("revoke_access_token");

client.call(revoke)?;

pub fn authorize_url(&self) -> AuthorizeUrl
[src]

pub fn access_token(&self) -> AccessToken
[src]

Trait Implementations

impl Clone for OAuth
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for OAuth
[src]

Auto Trait Implementations

impl Send for OAuth

impl Sync for OAuth

Blanket Implementations

impl<T> From for T
[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

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