Trait slack_morphism::SlackApiScrollableResponse[][src]

pub trait SlackApiScrollableResponse {
    type CursorType;
    type ResponseItemType;
    fn next_cursor(&self) -> Option<&Self::CursorType>;
fn scrollable_items<'a>(
        &'a self
    ) -> Box<dyn Iterator<Item = &'a Self::ResponseItemType> + 'a>; }

Associated Types

Required methods

Implementors