[][src]Struct twitch_irc::login::RefreshingLoginCredentials

pub struct RefreshingLoginCredentials<S: TokenStorage> { /* fields omitted */ }

Login credentials backed by a token storage and using OAuth refresh tokens, allowing use of OAuth tokens that expire

Implementations

impl<S: TokenStorage> RefreshingLoginCredentials<S>[src]

pub fn new(
    user_login: String,
    client_id: String,
    client_secret: String,
    token_storage: S
) -> RefreshingLoginCredentials<S>
[src]

Create new login credentials with a backing token storage.

Trait Implementations

impl<S: Debug + TokenStorage> Debug for RefreshingLoginCredentials<S>[src]

impl<S: TokenStorage> LoginCredentials for RefreshingLoginCredentials<S>[src]

type Error = RefreshingLoginError<S>

Error type that can occur when trying to fetch the credentials.

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, 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>,