1 2 3 4 5 6 7
use crate::{parse_response, responses::events::User, Method}; use serde::Deserialize; use std::future::IntoFuture; #[derive(Deserialize, Method, Debug)] #[method_path("users.get")] pub struct GetUsers(pub Vec<User>);