facebook_api_rs 0.1.2

A Rust client library for the Facebook Graph API v23.0, with full support for both native and WebAssembly (WASM) environments
Documentation
1
2
3
4
5
6
use serde::{Deserialize, Serialize};
/// Struct for which can hold data types.
#[derive(Deserialize, Debug, Clone, Serialize)]
pub struct Data<T> {
    pub data: Vec<T>,
}