Struct twitch_api2::TmiClient[][src]

pub struct TmiClient<'a, C: HttpClient<'a>> { /* fields omitted */ }
This is supported on crate features client and tmi only.

Client for the twitch TMI endpoint, almost entirely undocumented and certainly not supported.

Examples

let client = TmiClient::new();
println!("{:?}", client.get_chatters("justinfan10").await?);

Most clients will be able to use the 'static lifetime

pub struct MyStruct {
    twitch: TmiClient<'static, surf::Client>,
    token: twitch_oauth2::AppAccessToken,
}
// etc

See HttpClient for implemented http clients, you can also define your own if needed.

Implementations

impl<'a, C: HttpClient<'a>> TmiClient<'a, C>[src]

pub fn new() -> TmiClient<'a, C> where
    C: Default
[src]

Create a new client with a default

pub fn with_client(client: C) -> TmiClient<'a, C>[src]

Create a new TmiClient with an existing HttpClient

pub fn clone_client(&self) -> C where
    C: Clone
[src]

Retrieve a clone of the HttpClient inside this TmiClient

pub async fn get_chatters(
    &'a self,
    broadcaster: &str
) -> Result<GetChatters, RequestError<<C as HttpClient<'a>>::Error>>
[src]

Get all the chatters in the chat

Notes

This function will aside from url sanitize the broadcasters username, will also remove any # and make it lowercase ascii

pub async fn get_hosts(
    &'a self,
    include_logins: bool,
    channel_id: HostsRequestId
) -> Result<GetHosts, RequestError<<C as HttpClient<'a>>::Error>>
[src]

Get the broadcaster that a given channel is hosting, or the list of channels hosting a given target broadcaster.

Notes

This endpoint requires host={id} XOR target={id} in the query (providing both will result in an error, therefore this function takes a HostsRequestId enum).

Trait Implementations

impl<'a, C: Clone + HttpClient<'a>> Clone for TmiClient<'a, C>[src]

impl<'a, C: Default + HttpClient<'a>> Default for TmiClient<'a, C>[src]

Auto Trait Implementations

impl<'a, C> RefUnwindSafe for TmiClient<'a, C> where
    C: RefUnwindSafe
[src]

impl<'a, C> Send for TmiClient<'a, C>[src]

impl<'a, C> Sync for TmiClient<'a, C> where
    C: Sync
[src]

impl<'a, C> Unpin for TmiClient<'a, C> where
    C: Unpin
[src]

impl<'a, C> UnwindSafe for TmiClient<'a, C> where
    C: UnwindSafe
[src]

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]