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>; }

Required Associated Types

Required Methods

Implementors