safe-vk 0.3.3-alpha

A simple library to create your own vk bot for conversations
Documentation
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>);