tetrio_api/models/
mod.rs

1/// A module containing models fetched from the ch.tetr.io API
2/// Almost all models supported are "equivalent" to the ones shown in the API documentations.
3pub mod cache;
4/// A module containing models fetched from the ch.tetr.io API
5/// Almost all models supported are "equivalent" to the ones shown in the API documentations.
6pub mod packet;
7/// A module containing models fetched from the ch.tetr.io API
8/// Almost all models supported are "equivalent" to the ones shown in the API documentations.
9pub mod users;
10/// A module containing models fetched from the ch.tetr.io API
11/// Almost all models supported are "equivalent" to the ones shown in the API documentations.
12pub mod streams;
13/// A module containing models fetched from the ch.tetr.io API
14/// Almost all models supported are "equivalent" to the ones shown in the API documentations.
15pub mod news;
16/// A module containing models fetched from the ch.tetr.io API
17/// Almost all models supported are "equivalent" to the ones shown in the API documentations.
18pub mod general;
19
20pub mod common;
21
22pub mod labs;