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
7
8
9
10
11
12
13
14
15
16
17
18
use serde::{Deserialize, Serialize};

#[derive(Deserialize, Debug, Clone, Serialize, Default)]
pub struct Engagement {
    /// Number of people who like this
    count: u32,
}

impl Engagement {
    pub fn count(&self) -> u32 {
        self.count
    }
}

pub enum MediaType {
    Video,
    Image,
}