Pulls the list of users from the remote. NOTE: This function is only available to accounts with admin status on the Remote. Non-admin accounts attempting to call this function will pull an empty list of users.
(&self)
| 754 | /// NOTE: This function is only available to accounts with admin status on the Remote. |
| 755 | /// Non-admin accounts attempting to call this function will pull an empty list of users. |
| 756 | pub fn pull_users(&self) -> Result<(), ()> { |
| 757 | self.pull_users_with_progress(NoProgressCallback) |
| 758 | } |
| 759 | |
| 760 | /// Pulls the list of users from the remote. |
| 761 | /// |
no test coverage detected