[][src]Struct twitchchat::UserConfig

pub struct UserConfig {
    pub token: String,
    pub nick: String,
    pub caps: Vec<Capability>,
}

Configuration used to complete the 'registration' with the irc server

Fields

token: String

OAuth token from twitch, it must have the scopes: chat:read, chat:edit

nick: String

Username to use on twitch. (must be associated with the oauth token)

caps: Vec<Capability>

Which capabilites to enable

Methods

impl UserConfig[src]

pub fn builder() -> UserConfigBuilder[src]

Create a UserConfigBuilder, defaults with all of the Capabilities enabled

Auto Trait Implementations

impl Send for UserConfig

impl Sync for UserConfig

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

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

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