Struct egg_mode::user::IDCursor [] [src]

pub struct IDCursor {
    pub previous_cursor: i64,
    pub next_cursor: i64,
    pub ids: Vec<i64>,
}

Represents a single-page view into a list of user IDs.

This type is intended to be used in the background by IDLoader to hold an intermediate list of users to iterate over. See the module-level documentation for details.

Fields

previous_cursor: i64

Numeric reference to the previous page of results.

next_cursor: i64

Numeric reference to the next page of results.

ids: Vec<i64>

The list of user IDs in this page of results.