pub trait Paginated: Request {
// Required method
fn set_pagination(&mut self, cursor: Option<Cursor>);
}
Available on crate feature
helix
only.Expand description
A request that can be paginated.
Required Methods§
Sourcefn set_pagination(&mut self, cursor: Option<Cursor>)
fn set_pagination(&mut self, cursor: Option<Cursor>)
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.
Implementors§
impl Paginated for GetChannelFollowersRequest<'_>
impl Paginated for GetFollowedChannels<'_>
impl Paginated for GetVipsRequest<'_>
impl Paginated for GetCharityCampaignDonationsRequest<'_>
impl Paginated for GetChattersRequest<'_>
impl Paginated for GetUserEmotesRequest<'_>
impl Paginated for GetClipsRequest<'_>
impl Paginated for GetConduitShardsRequest<'_>
Available on crate feature
eventsub
only.impl Paginated for GetEventSubSubscriptionsRequest<'_>
Available on crate feature
eventsub
only.