[][src]Struct twitch_irc::login::StaticLoginCredentials

pub struct StaticLoginCredentials {
    pub credentials: CredentialsPair,
}

Simple LoginCredentials implementation that always returns the same CredentialsPair and never fails.

Fields

credentials: CredentialsPair

The credentials that are always returned.

Implementations

impl StaticLoginCredentials[src]

pub fn new(login: String, token: Option<String>) -> StaticLoginCredentials[src]

Create new static login credentials from the given Twitch login name and OAuth access token. The token should be without the oauth: prefix.

pub fn anonymous() -> StaticLoginCredentials[src]

Creates login credentials for logging into chat as an anonymous user.

Trait Implementations

impl Clone for StaticLoginCredentials[src]

impl Debug for StaticLoginCredentials[src]

impl LoginCredentials for StaticLoginCredentials[src]

type Error = Infallible

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