Cursor

Trait Cursor 

Source
pub trait Cursor {
    type Item;

    // Required methods
    fn previous_cursor_id(&self) -> i64;
    fn next_cursor_id(&self) -> i64;
    fn into_inner(self) -> Vec<Self::Item>;
}
Expand description

Trait to generalize over paginated views of API results.

Types that implement Cursor are used as intermediate steps in CursorIter’s Stream implementation, to properly load the data from Twitter. Most of the time you don’t need to deal with Cursor structs directly, but you can get them via CursorIter’s manual paging functionality.

Required Associated Types§

Source

type Item

What type is being returned by the API call?

Required Methods§

Source

fn previous_cursor_id(&self) -> i64

Returns a numeric reference to the previous page of results.

Source

fn next_cursor_id(&self) -> i64

Returns a numeric reference to the next page of results.

Source

fn into_inner(self) -> Vec<Self::Item>

Unwraps the cursor, returning the collection of results from inside.

Implementors§