tetrio_api/models/
common.rs

1
2pub type APIstring = String;
3pub type APIint = i64;
4pub type APIunsigned = u64;
5pub type APIsmallint = i16;
6pub type APIfloat = f64;
7pub type APIsmallfloat = f32;
8pub type APIArray<T> = Vec<T>;
9pub type APIintarray = APIArray<i64>;