pub trait Topic: Serialize + Into<String> {
    const SCOPE: &'static [Scope];

    fn into_topic(self) -> Topics;
}
Available on crate feature pubsub only.
Expand description

A logical partition of messages that clients may subscribe to, to get messages.

also known as event

Required Associated Constants

Available on crate feature twitch_oauth2 only.

Scopes needed by this topic

This constant unsupported

Required Methods

Convert this into a Topics

Implementors