[][src]Function egg_mode::user::blocks_ids

pub fn blocks_ids(token: &Token) -> CursorIter<'static, IDCursor>

Lookup the users that have been blocked by the authenticated user, but only return their user IDs.

Choosing only to load the user IDs instead of the full user information results in a call that can return more accounts per-page, which can be useful if you anticipate having to page through several results and don't need all the user information.

Note that while loading a user's blocks list is a cursored search, it does not allow you to set the page size. Calling with_page_size on a stream returned by this function will not change the page size used by the network call. Setting page_size manually may result in an error from Twitter.