Trait SlackApiResponseScrollerExt
Source pub trait SlackApiResponseScrollerExt<SCHC, CT, RT, RIT>: SlackApiResponseScroller<SCHC, CursorType = CT, ResponseType = RT, ResponseItemType = RIT>{
// Required methods
fn collect_items_stream<'a, 's>(
&'a self,
session: &'a SlackClientSession<'s, SCHC>,
throttle_duration: Duration,
) -> BoxFuture<'a, ClientResult<Vec<RIT>>>;
fn to_items_throttled_stream<'a, 's>(
&'a self,
session: &'a SlackClientSession<'s, SCHC>,
throttle_duration: Duration,
) -> BoxStream<'a, ClientResult<Vec<Self::ResponseItemType>>>;
}