pub trait UserChannelAPI: BaseClient {
// Required methods
fn get_channel_moderators(
&self,
) -> impl Future<Output = Result<Response<ModeratorResponse>, Error>> + Send;
fn get_channel_followers<'a>(&'a self) -> GetChannelFollower<'a>;
fn get_channel_subscribers<'a>(&'a self) -> GetChannelSubscriber<'a>;
}Required Methods§
Sourcefn get_channel_moderators(
&self,
) -> impl Future<Output = Result<Response<ModeratorResponse>, Error>> + Send
fn get_channel_moderators( &self, ) -> impl Future<Output = Result<Response<ModeratorResponse>, Error>> + Send
Sourcefn get_channel_followers<'a>(&'a self) -> GetChannelFollower<'a>
fn get_channel_followers<'a>(&'a self) -> GetChannelFollower<'a>
Sourcefn get_channel_subscribers<'a>(&'a self) -> GetChannelSubscriber<'a>
fn get_channel_subscribers<'a>(&'a self) -> GetChannelSubscriber<'a>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.