Struct twitch_oauth2::UserToken[][src]

pub struct UserToken {
    pub access_token: AccessToken,
    pub refresh_token: Option<RefreshToken>,
    // some fields omitted
}

Fields

access_token: AccessToken

The access token used to authenticate requests with

refresh_token: Option<RefreshToken>

The refresh token used to extend the life of this user token

Implementations

impl UserToken[src]

pub fn from_existing_unchecked(
    access_token: impl Into<AccessToken>,
    refresh_token: impl Into<Option<RefreshToken>>,
    client_id: impl Into<ClientId>,
    client_secret: impl Into<Option<ClientSecret>>,
    login: Option<String>,
    scopes: Option<Vec<Scope>>
) -> UserToken
[src]

Assemble token without checks.

pub async fn from_existing<RE, C, F>(
    http_client: C,
    access_token: AccessToken,
    refresh_token: impl Into<Option<RefreshToken>>,
    client_secret: impl Into<Option<ClientSecret>>
) -> Result<UserToken, ValidationError<RE>> where
    RE: Error + Send + Sync + 'static,
    C: FnOnce(HttpRequest) -> F,
    F: Future<Output = Result<HttpResponse, RE>>, 
[src]

Assemble token and validate it. Retrieves login, client_id and scopes

pub fn builder(
    client_id: ClientId,
    client_secret: ClientSecret,
    redirect_url: RedirectUrl
) -> Result<UserTokenBuilder, ParseError>
[src]

Create a UserTokenBuilder to get a token with the OAuth Authorization Code

Trait Implementations

impl Clone for UserToken[src]

impl Debug for UserToken[src]

impl TwitchToken for UserToken[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]