fourchan-rs 0.1.1

Async 4chan JSON API client and type bindings
Documentation
1
2
3
4
5
6
7
8
9
10
use serde::Deserialize;

use crate::catalog::CatalogThread;

/// A single board index page, `/{board}/{1-15}.json`. Each thread carries the
/// OP plus a handful of recent reply previews 
#[derive(Debug, Clone, Deserialize)]
pub struct IndexPage {
    pub threads: Vec<CatalogThread>,
}