pub type UsersResponse<C> = Result<Vec<UserInfo>, <C as ClientApi>::Error>;
pub enum UsersResponse<C> { Ok(Vec<UserInfo>), Err(<C as ClientApi>::Error), }
Contains the success value
Contains the error value