[][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 disabled

pub fn with_caps() -> UserConfigBuilder[src]

Create a UserConfigBuilder, with all of the Capabilities enabled

Trait Implementations

impl Clone for UserConfig[src]

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

Performs copy-assignment from source. Read more

impl Debug for UserConfig[src]

Auto Trait Implementations

impl Send for UserConfig

impl Sync for UserConfig

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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