Function egg_mode::list::remove_member_list [] [src]

pub fn remove_member_list<'a, T, I>(
    members: I,
    list: ListID,
    token: &Token,
    handle: &'a Handle
) -> FutureResponse<'a, List> where
    T: Into<UserID<'a>>,
    I: IntoIterator<Item = T>, 

Removes a set of users from the given list.

The members param can be used the same way as the accts param in user::lookup. See that method's documentation for details.

This method is limited to removing 100 members at a time.

When using this method, take care not to add and remove many members in rapid succession; there are no guarantees that the result of a add_member_list or remove_member_list will be immediately available for a corresponding removal or addition, respectively.